0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-06-07 05:08:54 +02:00

Rollback #11322 due to wrong syntax in mypy.ini. (#11332)

This was only checking the __init__ files in modules instead of
all files in a module, which don't pass yet.
This commit is contained in:
Patrick Cloke 2021-11-12 15:10:03 -05:00 committed by GitHub
parent bea815cec8
commit 3fad4e3fe5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 2 deletions

1
changelog.d/11332.misc Normal file
View file

@ -0,0 +1 @@
Add type hints to storage classes.

View file

@ -175,7 +175,16 @@ disallow_untyped_defs = True
[mypy-synapse.state.*]
disallow_untyped_defs = True
[mypy-synapse.storage]
[mypy-synapse.storage.databases.main.client_ips]
disallow_untyped_defs = True
[mypy-synapse.storage.databases.main.room_batch]
disallow_untyped_defs = True
[mypy-synapse.storage.databases.main.user_erasure_store]
disallow_untyped_defs = True
[mypy-synapse.storage.util.*]
disallow_untyped_defs = True
[mypy-synapse.streams.*]
@ -268,7 +277,10 @@ disallow_untyped_defs = True
[mypy-synapse.util.versionstring]
disallow_untyped_defs = True
[mypy-tests]
[mypy-tests.handlers.test_user_directory]
disallow_untyped_defs = True
[mypy-tests.storage.test_user_directory]
disallow_untyped_defs = True
[mypy-tests.rest.client.test_directory]