Skip to content

Commit

Permalink
STY: Correct whitespace placement (pandas-dev#32830)
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaharNaveh authored and jbrockmendel committed Mar 22, 2020
1 parent 71d1257 commit d3013f7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pandas/tests/indexes/test_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -307,13 +307,13 @@ def test_drop_duplicates(self, indices, keep):
pytest.skip("MultiIndex is tested separately")
if isinstance(indices, RangeIndex):
pytest.skip(
"RangeIndex is tested in test_drop_duplicates_no_duplicates"
" as it cannot hold duplicates"
"RangeIndex is tested in test_drop_duplicates_no_duplicates "
"as it cannot hold duplicates"
)
if len(indices) == 0:
pytest.skip(
"empty index is tested in test_drop_duplicates_no_duplicates"
" as it cannot hold duplicates"
"empty index is tested in test_drop_duplicates_no_duplicates "
"as it cannot hold duplicates"
)

# make unique index
Expand Down

0 comments on commit d3013f7

Please sign in to comment.