Ignore missing imports for parameterized. (#11285)

This was due to a conflict between #11282, which changed
mypy configuration, and #11228, a normal change.
This commit is contained in:
Patrick Cloke 2021-11-09 14:04:53 -05:00 committed by GitHub
parent 3b951445a7
commit 0ef69ddbdc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

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

@ -0,0 +1 @@
Require all files in synapse/ and tests/ to pass mypy unless specifically excluded.

View file

@ -363,6 +363,9 @@ ignore_missing_imports = True
[mypy-opentracing]
ignore_missing_imports = True
[mypy-parameterized.*]
ignore_missing_imports = True
[mypy-phonenumbers.*]
ignore_missing_imports = True