Skip to content
Snippets Groups Projects
Commit 991c6b48 authored by David Schäfer's avatar David Schäfer
Browse files

renaming

parent c7440f54
No related branches found
No related tags found
2 merge requests!591Test b,!579Translation cleanups
This commit is part of merge request !579. Comments created here will be created in the context of that merge request.
...@@ -24,6 +24,7 @@ BackwardMap = Dict[float, ExternalFlag] ...@@ -24,6 +24,7 @@ BackwardMap = Dict[float, ExternalFlag]
class TranslationScheme: class TranslationScheme:
@abstractproperty @abstractproperty
def DFILTER_DEFAULT(self): def DFILTER_DEFAULT(self):
pass pass
...@@ -33,15 +34,11 @@ class TranslationScheme: ...@@ -33,15 +34,11 @@ class TranslationScheme:
pass pass
@abstractmethod @abstractmethod
def forward(self, user_flags: pd.DataFrame | DictOfSeries) -> Flags: def forward(self, flags: pd.DataFrame | DictOfSeries) -> Flags:
pass pass
@abstractmethod @abstractmethod
def backward( def backward(self, flags: Flags, attrs: dict | None = None) -> DictOfSeries:
self,
internal_flags: Flags,
attrs: dict | None = None,
) -> DictOfSeries:
pass pass
......
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