From a08bf11138b8adc37fcc80e4884e11e5546abcb5 Mon Sep 17 00:00:00 2001 From: Erik Johnston Date: Wed, 29 Apr 2015 11:44:48 +0100 Subject: [PATCH] Appease PEP8 --- synapse/storage/engines/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/synapse/storage/engines/__init__.py b/synapse/storage/engines/__init__.py index ab070f3428..f661e4803c 100644 --- a/synapse/storage/engines/__init__.py +++ b/synapse/storage/engines/__init__.py @@ -14,6 +14,8 @@ # limitations under the License. from ._base import IncorrectDatabaseSetup +assert IncorrectDatabaseSetup # Appease PEP8 + from .postgres import PostgresEngine from .sqlite3 import Sqlite3Engine