diff options
author | Patrick Cloke <patrickc@matrix.org> | 2023-04-14 12:20:07 -0400 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2023-05-17 14:26:01 -0400 |
commit | a3e154910a7aac49285e778eafc006b2caa9a225 (patch) | |
tree | 2f27896553c5d73797c68844bb5ed9b3e92adfa6 | |
parent | Be explicit about datastores. (diff) | |
download | synapse-a3e154910a7aac49285e778eafc006b2caa9a225.tar.xz |
Lint
-rw-r--r-- | synapse/storage/databases/main/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/synapse/storage/databases/main/__init__.py b/synapse/storage/databases/main/__init__.py index 2814368027..80e49dfa8b 100644 --- a/synapse/storage/databases/main/__init__.py +++ b/synapse/storage/databases/main/__init__.py @@ -15,12 +15,10 @@ # limitations under the License. import logging -import re -from typing import TYPE_CHECKING, List, Match, Optional, Tuple, Type, cast +from typing import TYPE_CHECKING, List, Optional, Tuple, cast from synapse.api.constants import Direction from synapse.config.homeserver import HomeServerConfig -from synapse.storage._base import SQLBaseStore from synapse.storage.database import ( DatabasePool, LoggingDatabaseConnection, |