Skip to content

Commit 6c0d456

Browse files
committed
CLN: fixes bracket indents
1 parent bfe628a commit 6c0d456

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tests/frame/test_operators.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ def test_neg(self):
275275
numeric = pd.DataFrame({
276276
'a': [-1, 0, 1],
277277
'b': [1, 0, 1],
278-
})
278+
})
279279
boolean = pd.DataFrame({
280280
'a': [True, False, True],
281281
'b': [False, False, True]
@@ -295,7 +295,7 @@ def test_pos(self):
295295
numeric = pd.DataFrame({
296296
'a': [-1, 0, 1],
297297
'b': [1, 0, 1],
298-
})
298+
})
299299
boolean = pd.DataFrame({
300300
'a': [True, False, True],
301301
'b': [False, False, True]

0 commit comments

Comments
 (0)