Skip to content

Commit 7413a9c

Browse files
author
Nicholas Ver Halen
committed
Did some editing for some lint problems.
1 parent 26fe3a1 commit 7413a9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/tools/tests/test_util.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -422,8 +422,8 @@ def test_downcast(self):
422422
# ('uint64', 'unsigned', [np.iinfo(np.uint32).min, np.iinfo(np.uint32).max + 1]),
423423
]
424424

425-
for dtype, downcast, min_max in dtype_downcast_min_max:
426-
series = pd.to_numeric(pd.Series(min_max), downcast = downcast)
425+
for dtype, downcast, min_max in dtype_downcast_min_max:
426+
series = pd.to_numeric(pd.Series(min_max), downcast=downcast)
427427
tm.assert_equal(series.dtype, dtype)
428428

429429

0 commit comments

Comments
 (0)