diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2023-08-25 14:10:47 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-25 14:10:47 -0400 |
commit | ed6de4b2d40e07f7076b7bcb9507aa3e360fb19b (patch) | |
tree | f77a11fc66c29a9d837c08bf0e5fb16749588aa1 | |
parent | Validate input to POST /key/v2/query endpoint. (#16183) (diff) | |
download | synapse-ed6de4b2d40e07f7076b7bcb9507aa3e360fb19b.tar.xz |
service-identity, incremental, and setuptools-rust now have type hints. (#16186)
-rw-r--r-- | changelog.d/16186.misc | 1 | ||||
-rw-r--r-- | mypy.ini | 9 |
2 files changed, 1 insertions, 9 deletions
diff --git a/changelog.d/16186.misc b/changelog.d/16186.misc new file mode 100644 index 0000000000..93ceaeafc9 --- /dev/null +++ b/changelog.d/16186.misc @@ -0,0 +1 @@ +Improve type hints. diff --git a/mypy.ini b/mypy.ini index 311a951aa8..fb5f44c939 100644 --- a/mypy.ini +++ b/mypy.ini @@ -87,18 +87,9 @@ ignore_missing_imports = True [mypy-saml2.*] ignore_missing_imports = True -[mypy-service_identity.*] -ignore_missing_imports = True - [mypy-srvlookup.*] ignore_missing_imports = True # https://github.com/twisted/treq/pull/366 [mypy-treq.*] ignore_missing_imports = True - -[mypy-incremental.*] -ignore_missing_imports = True - -[mypy-setuptools_rust.*] -ignore_missing_imports = True |