Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
alexitkes committed Mar 31, 2020
1 parent 70359f6 commit 01ec83a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pandas/tests/util/test_deprecate_nonkeyword_arguments.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ def test_three_positional_argument_with_warning_message_analysis():
for actual_warning in w:
assert actual_warning.category == FutureWarning
assert str(actual_warning.message) == (
"Starting with Pandas version 1.1 all arguments of g"
" except for the argument 'a' will be keyword-only"
"Starting with Pandas version 1.1 all arguments of g "
"except for the argument 'a' will be keyword-only"
)


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

0 comments on commit 01ec83a

Please sign in to comment.