Skip to content

Commit 4440c71

Browse files
committed
Fixed PEP8 issues :(
1 parent 73d6c45 commit 4440c71

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

pandas/tests/indexing/test_scalar.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,10 @@ def test_mixed_index_at_iat_loc_iloc_series(self):
184184
with pytest.raises(KeyError):
185185
s.loc[4]
186186

187-
188187
def test_mixed_index_at_iat_loc_iloc_dataframe(self):
189188
# GH 19860
190189
df = DataFrame([[0, 1, 2, 3, 4], [5, 6, 7, 8, 9]],
191-
columns=['a', 'b', 'c', 1, 2])
190+
columns=['a', 'b', 'c', 1, 2])
192191
for rowIdx, row in df.iterrows():
193192
for el, item in row.iteritems():
194193
assert df.at[rowIdx, el] == df.loc[rowIdx, el] == item
@@ -201,5 +200,3 @@ def test_mixed_index_at_iat_loc_iloc_dataframe(self):
201200
df.at[0, 3]
202201
with pytest.raises(KeyError):
203202
df.loc[0, 3]
204-
205-

0 commit comments

Comments
 (0)