Skip to content
Snippets Groups Projects
Commit 2b3dbb0a authored by Antoine Lambert's avatar Antoine Lambert
Browse files

mypy: Fix errors with release >= v0.900

parent f9fa0dd3
No related branches found
No related tags found
No related merge requests found
......@@ -3,3 +3,6 @@ pytest-mock
swh.core[http] >= 0.0.61
swh.scheduler[testing] >= 0.5.0
swh.storage[testing]
types-click
types-deprecated
types-python-dateutil
from pkgutil import extend_path
from typing import Iterable
from typing import List
__path__ = extend_path(__path__, __name__) # type: Iterable[str]
__path__: List[str] = extend_path(__path__, __name__)
from pkgutil import extend_path
from typing import Iterable
from typing import List
__path__ = extend_path(__path__, __name__) # type: Iterable[str]
__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