Skip to content

Commit d16b66d

Browse files
committed
fix linting error
1 parent 445afd6 commit d16b66d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/tests/indexing/test_loc.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -644,7 +644,7 @@ def test_identity_slice_returns_new_object(self):
644644
# These should not return copies
645645
assert original_df is original_df.loc[:, :]
646646
df = DataFrame(np.random.randn(10, 4))
647-
assert df[0] is df.loc[:,0]
647+
assert df[0] is df.loc[:, 0]
648648

649649
# Same tests for Series
650650
original_series = Series([1, 2, 3, 4, 5, 6])

0 commit comments

Comments
 (0)