diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-10-21 09:07:07 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-21 13:07:07 +0000 |
commit | 0f9adc99ada1f66f4897c8164dcf509a955e5584 (patch) | |
tree | efc2c73d0f303d86ccd2aa97e3817891887e2e79 /mypy.ini | |
parent | fix relative link in docker readme (#11144) (diff) | |
download | synapse-0f9adc99ada1f66f4897c8164dcf509a955e5584.tar.xz |
Add missing type hints to synapse.crypto. (#11146)
And require type hints for this module.
Diffstat (limited to 'mypy.ini')
-rw-r--r-- | mypy.ini | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mypy.ini b/mypy.ini index 14d8bb8eaf..c5f44aea39 100644 --- a/mypy.ini +++ b/mypy.ini @@ -103,6 +103,9 @@ files = [mypy-synapse.api.*] disallow_untyped_defs = True +[mypy-synapse.crypto.*] +disallow_untyped_defs = True + [mypy-synapse.events.*] disallow_untyped_defs = True |