Skip to content

Commit ed63145

Browse files
committed
Fix linting
1 parent 251ba47 commit ed63145

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pandas/tests/util/test_deprecate_nonkeyword_arguments.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ def test_three_positional_argument_with_warning_message_analysis():
6868
for actual_warning in w:
6969
assert actual_warning.category == FutureWarning
7070
assert str(actual_warning.message) == (
71-
"Starting with Pandas version 1.1 all arguments of g"
72-
" except for the argument 'a' will be keyword-only"
71+
"Starting with Pandas version 1.1 all arguments of g "
72+
"except for the argument 'a' will be keyword-only"
7373
)
7474

7575

@@ -96,6 +96,6 @@ def test_one_positional_argument_with_warning_message_analysis():
9696
for actual_warning in w:
9797
assert actual_warning.category == FutureWarning
9898
assert str(actual_warning.message) == (
99-
"Starting with Pandas version 1.1 all arguments"
100-
" of h will be keyword-only"
99+
"Starting with Pandas version 1.1 all arguments "
100+
"of h will be keyword-only"
101101
)

0 commit comments

Comments
 (0)