Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Mar 7, 2025
1 parent edbafc3 commit fd4882b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion tests/unit/cag/test_inequality.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,10 @@ def test__fit(self):
assert instance._low_datetime_format == '%y %m, %d'
assert instance._high_datetime_format == '%y %m %d'

@pytest.mark.parametrize('dtype', ['float16', 'float32', 'float64', 'Float64', 'Float32', 'Int64', 'Int32', 'Int16', 'Int8'])
@pytest.mark.parametrize(
'dtype',
['float16', 'float32', 'float64', 'Float64', 'Float32', 'Int64', 'Int32', 'Int16', 'Int8'],
)
def test__fit_numerical(self, dtype):
"""Test it for numerical columns."""
# Setup
Expand Down

0 comments on commit fd4882b

Please sign in to comment.