diff --git a/swh/__init__.py b/swh/__init__.py index f580149..b36383a 100644 --- a/swh/__init__.py +++ b/swh/__init__.py @@ -1,3 +1,3 @@ -from typing import Iterable +from pkgutil import extend_path -__path__: Iterable[str] = __import__("pkgutil").extend_path(__path__, __name__) +__path__ = extend_path(__path__, __name__)