Use __all__ instead of assert to stop pyflakes from warning about unused import in __init__

This commit is contained in:
Erik Johnston 2015-04-29 11:56:38 +01:00
parent 9894da6a29
commit 4932a7e2d9

View File

@ -14,8 +14,6 @@
# limitations under the License.
from ._base import IncorrectDatabaseSetup
assert IncorrectDatabaseSetup # Appease PEP8
from .postgres import PostgresEngine
from .sqlite3 import Sqlite3Engine
@ -38,3 +36,6 @@ def create_engine(name):
raise RuntimeError(
"Unsupported database engine '%s'" % (name,)
)
__all__ = ["create_engine", "IncorrectDatabaseSetup"]