Fix pylint/flake8 errors for SQL work.

This commit is contained in:
Ryan Roden-Corrent 2017-02-20 12:15:06 -05:00
parent a050cb94f6
commit 3c676f9562
2 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,6 @@ import os.path
import collections import collections
import functools import functools
import contextlib import contextlib
import itertools
import socket import socket
import shlex import shlex

View File

@ -121,5 +121,6 @@ def test_delete_all(qtbot):
table.delete_all() table.delete_all()
assert list(table) == [] assert list(table) == []
def test_version(): def test_version():
assert isinstance(sql.version(), str) assert isinstance(sql.version(), str)