summary refs log tree commit diff
path: root/mypy.ini
diff options
context:
space:
mode:
authorSean Quah <8349537+squahtx@users.noreply.github.com>2021-10-12 13:50:34 +0100
committerGitHub <noreply@github.com>2021-10-12 13:50:34 +0100
commit36224e056a0ba91b4541607c5ad5cd5152d0e672 (patch)
tree6af593892cdf674eebb7ad15a09461ab76b9fcea /mypy.ini
parentMerge tag 'v1.45.0rc1' into develop (diff)
downloadsynapse-36224e056a0ba91b4541607c5ad5cd5152d0e672.tar.xz
Add type hints to `synapse.storage.databases.main.client_ips` (#10972)
Diffstat (limited to 'mypy.ini')
-rw-r--r--mypy.ini4
1 files changed, 4 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini
index a7019e2bd4..174a6edae6 100644
--- a/mypy.ini
+++ b/mypy.ini
@@ -53,6 +53,7 @@ files =
   synapse/storage/_base.py,
   synapse/storage/background_updates.py,
   synapse/storage/databases/main/appservice.py,
+  synapse/storage/databases/main/client_ips.py,
   synapse/storage/databases/main/events.py,
   synapse/storage/databases/main/keys.py,
   synapse/storage/databases/main/pusher.py,
@@ -108,6 +109,9 @@ disallow_untyped_defs = True
 [mypy-synapse.state.*]
 disallow_untyped_defs = True
 
+[mypy-synapse.storage.databases.main.client_ips]
+disallow_untyped_defs = True
+
 [mypy-synapse.storage.util.*]
 disallow_untyped_defs = True