Skip to content

Commit 40634ac

Browse files
committed
linting
1 parent 0b1f02b commit 40634ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pandas/core/reshape/tile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
is_datetime64tz_dtype,
1717
is_datetime_or_timedelta_dtype,
1818
is_integer,
19+
is_list_like,
1920
is_scalar,
2021
is_timedelta64_dtype,
21-
is_list_like
2222
)
2323
from pandas.core.dtypes.generic import ABCSeries
2424
from pandas.core.dtypes.missing import isna

pandas/tests/reshape/test_qcut.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ def test_qcut_labels_true():
134134
# issue 13318
135135
values = range(5)
136136
msg = "User desired bin labels must be passed in as an argument, not just `True`"
137-
with pytest.raises(ValueError ,match=msg) as w:
137+
with pytest.raises(ValueError, match=msg) as w:
138138
qcut(values, 4, labels=True)
139139

140140

0 commit comments

Comments
 (0)