Skip to content
Snippets Groups Projects

Translation cleanups

Merged David Schäfer requested to merge translation_cleanups into develop
1 file
+ 3
6
Compare changes
  • Side-by-side
  • Inline
@@ -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
Loading