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
......@@ -24,6 +24,7 @@ BackwardMap = Dict[float, ExternalFlag]
class TranslationScheme:
@abstractproperty
def DFILTER_DEFAULT(self):
pass
......@@ -33,15 +34,11 @@ class TranslationScheme:
pass
@abstractmethod
def forward(self, user_flags: pd.DataFrame | DictOfSeries) -> Flags:
def forward(self, flags: pd.DataFrame | DictOfSeries) -> Flags:
pass
@abstractmethod
def backward(
self,
internal_flags: Flags,
attrs: dict | None = None,
) -> DictOfSeries:
def backward(self, flags: Flags, attrs: dict | None = None) -> DictOfSeries:
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