diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2021-11-09 14:04:53 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-09 19:04:53 +0000 |
commit | 0ef69ddbdcf03d0630d41bb2a52d018e7ff11c2c (patch) | |
tree | 85b9b1d2c58db055d639ba9b5a0fadf366df72cd /mypy.ini | |
parent | Require mypy for synapse/ & tests/ unless excluded (#11282) (diff) | |
download | synapse-0ef69ddbdcf03d0630d41bb2a52d018e7ff11c2c.tar.xz |
Ignore missing imports for parameterized. (#11285)
This was due to a conflict between #11282, which changed mypy configuration, and #11228, a normal change.
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 8c20c293aa..1752b82bc5 100644 --- a/mypy.ini +++ b/mypy.ini @@ -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 |