diff options
author | Dirk Klimpel <5740567+dklimpel@users.noreply.github.com> | 2021-12-30 13:22:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-30 07:22:31 -0500 |
commit | 07a3b5dabad98678bae52275b327c302adbf67af (patch) | |
tree | bb5d0e692ad2d223c3a13eafef30d5346a73a7a6 /mypy.ini | |
parent | Fix a type annotation in `test_account_data.py` and remove it from the Mypy e... (diff) | |
download | synapse-07a3b5dabad98678bae52275b327c302adbf67af.tar.xz |
Add type hints to `synapse/storage/databases/main/events_bg_updates.py` (#11654)
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/mypy.ini b/mypy.ini index e0204a3c04..85fa22d28f 100644 --- a/mypy.ini +++ b/mypy.ini @@ -28,7 +28,6 @@ exclude = (?x) |synapse/storage/databases/main/cache.py |synapse/storage/databases/main/devices.py |synapse/storage/databases/main/event_federation.py - |synapse/storage/databases/main/events_bg_updates.py |synapse/storage/databases/main/group_server.py |synapse/storage/databases/main/metrics.py |synapse/storage/databases/main/monthly_active_users.py @@ -200,6 +199,9 @@ disallow_untyped_defs = True [mypy-synapse.storage.databases.main.event_push_actions] disallow_untyped_defs = True +[mypy-synapse.storage.databases.main.events_bg_updates] +disallow_untyped_defs = True + [mypy-synapse.storage.databases.main.events_worker] disallow_untyped_defs = True |