diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-03-23 07:12:48 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-23 07:12:48 -0400 |
commit | b7748d3c00e87df8c49346e67d643916487254e4 (patch) | |
tree | 3885f68ea97285d8af6c786434c603fb8ee17f33 /synapse/handlers/account_data.py | |
parent | Allow providing credentials to HTTPS_PROXY (#9657) (diff) | |
download | synapse-b7748d3c00e87df8c49346e67d643916487254e4.tar.xz |
Import HomeServer from the proper module. (#9665)
Diffstat (limited to 'synapse/handlers/account_data.py')
-rw-r--r-- | synapse/handlers/account_data.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/account_data.py b/synapse/handlers/account_data.py index b1a5df9638..1ce6d697ed 100644 --- a/synapse/handlers/account_data.py +++ b/synapse/handlers/account_data.py @@ -25,7 +25,7 @@ from synapse.replication.http.account_data import ( from synapse.types import JsonDict, UserID if TYPE_CHECKING: - from synapse.app.homeserver import HomeServer + from synapse.server import HomeServer class AccountDataHandler: |