Skip to content

Commit 28e0f18

Browse files
authored
CLN: Fix linting (#32987)
1 parent b8035bb commit 28e0f18

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: pandas/tests/indexes/timedeltas/test_constructors.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -169,8 +169,8 @@ def test_constructor_coverage(self):
169169
timedelta_range(start="1 days", periods="foo", freq="D")
170170

171171
msg = (
172-
r"TimedeltaIndex\(\) must be called with a collection of some kind,"
173-
" '1 days' was passed"
172+
r"TimedeltaIndex\(\) must be called with a collection of some kind, "
173+
"'1 days' was passed"
174174
)
175175
with pytest.raises(TypeError, match=msg):
176176
TimedeltaIndex("1 days")

0 commit comments

Comments
 (0)