Skip to content

Commit 2396314

Browse files
committed
pyflakes fixup
1 parent ce0d440 commit 2396314

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

pandas/tests/test_window.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2435,9 +2435,11 @@ def test_rolling_median_memory_error(self):
24352435

24362436
def test_rolling_min_max_numeric_types(self):
24372437
# GH12373
2438-
types_test = [np.dtype("f{}".format(width)) for width in [4,8]]
2439-
types_test.extend([np.dtype("{}{}".format(sign,width)) for width in [1,2,4,8] for sign in "ui"])
2438+
types_test = [np.dtype("f{}".format(width)) for width in [4, 8]]
2439+
types_test.extend([np.dtype("{}{}".format(sign, width))
2440+
for width in [1, 2, 4, 8] for sign in "ui"])
24402441
for data_type in types_test:
2441-
# Just testing that these don't throw exceptions. Other tests will cover quantitative correctness
2442-
DataFrame(np.arange(20, dtype=data_type)).rolling(window=5).max()
2442+
# Just testing that these don't throw exceptions. Other tests will
2443+
# cover quantitative correctness
2444+
DataFrame(np.arange(20, dtype=data_type)).rolling(window=5).max()
24432445
DataFrame(np.arange(20, dtype=data_type)).rolling(window=5).min()

0 commit comments

Comments
 (0)