diff options
author | David Robertson <davidr@element.io> | 2022-05-17 00:34:38 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-17 00:34:38 +0100 |
commit | 1fe202a1a3343fad77da270ffe0923a46f1944dd (patch) | |
tree | 094da188358f31287a97154f24f0d7fc273aa6f9 /mypy.ini | |
parent | Fix typo in name of 'run_background_tasks_on' option in config manual (#12749) (diff) | |
download | synapse-1fe202a1a3343fad77da270ffe0923a46f1944dd.tar.xz |
Tidy up and type-hint the database engine modules (#12734)
Co-authored-by: Sean Quah <8349537+squahtx@users.noreply.github.com>
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini index 9ae7ad211c..b5b907973f 100644 --- a/mypy.ini +++ b/mypy.ini @@ -232,6 +232,9 @@ disallow_untyped_defs = True [mypy-synapse.storage.databases.main.user_erasure_store] disallow_untyped_defs = True +[mypy-synapse.storage.engines.*] +disallow_untyped_defs = True + [mypy-synapse.storage.prepare_database] disallow_untyped_defs = True |