Skip to content

Commit

Permalink
Merge branch '809-reorder-parameters-of-rangescalar' of https://githu…
Browse files Browse the repository at this point in the history
…b.com/Safe-DS/Library into 809-reorder-parameters-of-rangescalar
  • Loading branch information
TellemHD committed Jun 21, 2024
2 parents 4225495 + 6c64316 commit c14ec94
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/safeds/data/tabular/transformation/_range_scaler.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,7 @@ class RangeScaler(InvertibleTableTransformer):
# Dunder methods
# ------------------------------------------------------------------------------------------------------------------

def __init__(
self,
*,
column_names: str | list[str] | None = None,
min_: float = 0.0,
max_: float = 1.0
) -> None:
def __init__(self, *, column_names: str | list[str] | None = None, min_: float = 0.0, max_: float = 1.0) -> None:
super().__init__(column_names)

if min_ >= max_:
Expand Down

0 comments on commit c14ec94

Please sign in to comment.