Skip to content
Snippets Groups Projects
Verified Commit 2ff55b6d authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Add missing dependencies and make recent version mypy happy

parent dc9ea01d
No related branches found
Tags swh-graphql-20240111.1
1 merge request!25Add missing dependencies and make recent version mypy happy
......@@ -22,4 +22,5 @@ ignore_missing_imports = True
[mypy-pytest.*]
ignore_missing_imports = True
[mypy-yaml.*]
ignore_missing_imports = True
......@@ -2,3 +2,6 @@
# should match https://pypi.python.org/pypi names. For the full spec or
# dependency lines, see https://pip.readthedocs.org/en/1.1/requirements.html
python-keycloak >= 0.19.0
PyYAML
click
types-click
from pkgutil import extend_path
from typing import Iterable
from typing import List
__path__: Iterable[str] = extend_path(__path__, __name__)
__path__: List[str] = extend_path(__path__, __name__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment