summary refs log tree commit diff
path: root/synapse/storage
diff options
context:
space:
mode:
Diffstat (limited to 'synapse/storage')
-rw-r--r--synapse/storage/engines/__init__.py2
1 files changed, 2 insertions, 0 deletions
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