summary refs log tree commit diff
path: root/synapse/storage/__init__.py
diff options
context:
space:
mode:
authorPatrick Cloke <clokep@users.noreply.github.com>2021-03-23 07:12:48 -0400
committerGitHub <noreply@github.com>2021-03-23 07:12:48 -0400
commitb7748d3c00e87df8c49346e67d643916487254e4 (patch)
tree3885f68ea97285d8af6c786434c603fb8ee17f33 /synapse/storage/__init__.py
parentAllow providing credentials to HTTPS_PROXY (#9657) (diff)
downloadsynapse-b7748d3c00e87df8c49346e67d643916487254e4.tar.xz
Import HomeServer from the proper module. (#9665)
Diffstat (limited to 'synapse/storage/__init__.py')
-rw-r--r--synapse/storage/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/storage/__init__.py b/synapse/storage/__init__.py
index a3c52695e9..0b9007e51f 100644
--- a/synapse/storage/__init__.py
+++ b/synapse/storage/__init__.py
@@ -36,7 +36,7 @@ from synapse.storage.purge_events import PurgeEventsStorage
 from synapse.storage.state import StateGroupStorage
 
 if TYPE_CHECKING:
-    from synapse.app.homeserver import HomeServer
+    from synapse.server import HomeServer
 
 
 __all__ = ["Databases", "DataStore"]