Use __all__ instead of assert to stop pyflakes from warning about unused import in __init__
This commit is contained in:
parent
9894da6a29
commit
4932a7e2d9
|
@ -14,8 +14,6 @@
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
from ._base import IncorrectDatabaseSetup
|
from ._base import IncorrectDatabaseSetup
|
||||||
assert IncorrectDatabaseSetup # Appease PEP8
|
|
||||||
|
|
||||||
from .postgres import PostgresEngine
|
from .postgres import PostgresEngine
|
||||||
from .sqlite3 import Sqlite3Engine
|
from .sqlite3 import Sqlite3Engine
|
||||||
|
|
||||||
|
@ -38,3 +36,6 @@ def create_engine(name):
|
||||||
raise RuntimeError(
|
raise RuntimeError(
|
||||||
"Unsupported database engine '%s'" % (name,)
|
"Unsupported database engine '%s'" % (name,)
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
__all__ = ["create_engine", "IncorrectDatabaseSetup"]
|
||||||
|
|
Loading…
Reference in New Issue