mirror of
https://mau.dev/maunium/synapse.git
synced 2024-11-14 05:52:37 +01:00
Only import sqlite3 when type checking
Fixes: #7127 Signed-off-by: David Vo <david@vovo.id.au>
This commit is contained in:
parent
b5d0b038f4
commit
5bd2b27525
2 changed files with 6 additions and 2 deletions
1
changelog.d/7155.bugfix
Normal file
1
changelog.d/7155.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Avoid importing `sqlite3` when using the postgres backend. Contributed by David Vo.
|
|
@ -12,14 +12,17 @@
|
|||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
import sqlite3
|
||||
import struct
|
||||
import threading
|
||||
import typing
|
||||
|
||||
from synapse.storage.engines import BaseDatabaseEngine
|
||||
|
||||
if typing.TYPE_CHECKING:
|
||||
import sqlite3 # noqa: F401
|
||||
|
||||
class Sqlite3Engine(BaseDatabaseEngine[sqlite3.Connection]):
|
||||
|
||||
class Sqlite3Engine(BaseDatabaseEngine["sqlite3.Connection"]):
|
||||
def __init__(self, database_module, database_config):
|
||||
super().__init__(database_module, database_config)
|
||||
|
||||
|
|
Loading…
Reference in a new issue