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

mypy: Fix errors with release >= v0.900

parent 584777f3
No related branches found
Tags v0.22.2
No related merge requests found
......@@ -4,3 +4,7 @@ requests_mock
swh-core[testing]
swh-scheduler[testing] >= 0.5.0
swh-storage[testing] >= 0.10.6
types-click
types-python-dateutil
types-pyyaml
types-requests
# Copyright (C) 2016-2020 The Software Heritage developers
# Copyright (C) 2016-2021 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
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__)
# Copyright (C) 2016-2020 The Software Heritage developers
# Copyright (C) 2016-2021 The Software Heritage developers
# See the AUTHORS file at the top-level directory of this distribution
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
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