diff options
author | David Robertson <davidr@element.io> | 2021-11-15 12:59:33 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-15 12:59:33 +0000 |
commit | e605e4b8f2447f0b6afa9acc104ae1882a732090 (patch) | |
tree | 73cc0f637dc103eda70a3f6904f993d33bf3e083 /mypy.ini | |
parent | Get directory db file to pass mypy (#11339) (diff) | |
download | synapse-e605e4b8f2447f0b6afa9acc104ae1882a732090.tar.xz |
Database storage profile passes mypy (#11342)
It already seems to pass mypy. I wonder what changed, given that it was on the exclusion list. So this commit consists of me ensuring `--disallow-untyped-defs` passes and a minor fixup to a function that returned either `True` or `None`.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/mypy.ini b/mypy.ini index 710b1f3a4b..b2953974ea 100644 --- a/mypy.ini +++ b/mypy.ini @@ -38,7 +38,6 @@ exclude = (?x) |synapse/storage/databases/main/metrics.py |synapse/storage/databases/main/monthly_active_users.py |synapse/storage/databases/main/presence.py - |synapse/storage/databases/main/profile.py |synapse/storage/databases/main/purge_events.py |synapse/storage/databases/main/push_rule.py |synapse/storage/databases/main/receipts.py @@ -182,6 +181,9 @@ disallow_untyped_defs = True [mypy-synapse.storage.databases.main.room_batch] disallow_untyped_defs = True +[mypy-synapse.storage.databases.main.profile] +disallow_untyped_defs = True + [mypy-synapse.storage.databases.main.state_deltas] disallow_untyped_defs = True @@ -284,6 +286,9 @@ disallow_untyped_defs = True [mypy-tests.handlers.test_user_directory] disallow_untyped_defs = True +[mypy-tests.storage.test_profile] +disallow_untyped_defs = True + [mypy-tests.storage.test_user_directory] disallow_untyped_defs = True |