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.
pull/11339/head
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]