commented out "autoscale" - has to be fixed

This commit is contained in:
2025-09-05 14:45:54 +02:00
parent 03e2f461cb
commit 68e592cfe4

View File

@@ -371,14 +371,15 @@ class ReductionConfig(ArgParsable):
},
)
# TODO: This made no sense, it is used as single bool.
autoscale: Tuple[float, float] = field(
default_factory=lambda: [None, None],
metadata={
'short': 'S',
'group': 'data manicure',
'help': '',
},
)
autoscale: bool = False
#autoscale: Tuple[float, float] = field(
# default_factory=lambda: [None, None],
# metadata={
# 'short': 'S',
# 'group': 'data manicure',
# 'help': '',
# },
# )
subtract: Optional[str] = field(
default=None,
metadata={