mirror of
https://git.anonymousland.org/anonymousland/synapse-product.git
synced 2024-10-01 08:25:44 -04:00
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.
|
||||
|
||||
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"]
|
||||
|
Loading…
Reference in New Issue
Block a user