Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jitingxu1 committed Sep 13, 2024
1 parent 6fbf9d8 commit de116a4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/test_standardize.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

import ibis_ml as ml


def test_scalestandard():
cols = np.arange(0, 100)
mean = np.mean(cols)
Expand Down Expand Up @@ -34,7 +35,10 @@ def test_scaleminmax():
("model", "msg"),
[
("ScaleStandard", "Cannot standardize 'col' - the standard deviation is zero"),
("ScaleMinMax", "Cannot standardize 'col' - the maximum and minimum values are equal"),
(
"ScaleMinMax",
"Cannot standardize 'col' - the maximum and minimum values are equal",
),
],
)
def test_scale_unique_col(model, msg):
Expand Down

0 comments on commit de116a4

Please sign in to comment.