aboutsummaryrefslogtreecommitdiff
path: root/src/hydrilla/proxy/state.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/hydrilla/proxy/state.py')
-rw-r--r--src/hydrilla/proxy/state.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/hydrilla/proxy/state.py b/src/hydrilla/proxy/state.py
index d00658f..fbd546e 100644
--- a/src/hydrilla/proxy/state.py
+++ b/src/hydrilla/proxy/state.py
@@ -160,7 +160,7 @@ class RepoRef(Ref):
...
@abstractmethod
- def refresh(self) -> 'RepoIterationRef':
+ def refresh(self) -> None:
"""...."""
...
@@ -345,7 +345,7 @@ class MissingItemError(ValueError):
class HaketiloState(ABC):
"""...."""
@abstractmethod
- def import_packages(self, malcontent_path: Path) -> None:
+ def import_items(self, malcontent_path: Path) -> None:
...
@abstractmethod