aboutsummaryrefslogtreecommitdiff
path: root/tests/test_meta.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2021-12-23 20:55:23 +0800
committerGitHub <noreply@github.com>2021-12-23 07:55:23 -0500
commit830343d11c75811c27e90df844b2d5c8059a05c1 (patch)
tree52f971ce5c8498d584c0a8126e73987862f48378 /tests/test_meta.py
parente5dfcd7ba726fec2ccf59bdca615a4e623513c73 (diff)
downloadpyca-cryptography-830343d11c75811c27e90df844b2d5c8059a05c1.zip
pyca-cryptography-830343d11c75811c27e90df844b2d5c8059a05c1.tar.gz
pyca-cryptography-830343d11c75811c27e90df844b2d5c8059a05c1.tar.bz2
add some more mypy flags (#6751)
remove some unneeded type ignores. This work found a missing type and added it as well.
Diffstat (limited to 'tests/test_meta.py')
-rw-r--r--tests/test_meta.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_meta.py b/tests/test_meta.py
index d89daad..9d7cde8 100644
--- a/tests/test_meta.py
+++ b/tests/test_meta.py
@@ -15,7 +15,7 @@ def find_all_modules() -> typing.List[str]:
return sorted(
mod
for _, mod, _ in pkgutil.walk_packages(
- cryptography.__path__, # type: ignore[attr-defined]
+ cryptography.__path__,
prefix=cryptography.__name__ + ".",
)
)