Skip to content

Commit a77ab66

Browse files
author
analyticalmonk
committed
style fix
1 parent f842de5 commit a77ab66

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/tests/dtypes/test_common.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ def test_invalid_dtype_error(self):
2222
with tm.assertRaisesRegexp(TypeError, msg):
2323
pandas_dtype(dtype)
2424

25-
valid_list = [object, 'float64', np.float64, float, np.dtype('float64')]
25+
valid_list = [object, 'float64',
26+
np.float64, float, np.dtype('float64')]
2627
for dtype in valid_list:
2728
pandas_dtype(dtype)
2829

0 commit comments

Comments
 (0)