Skip to content

Commit

Permalink
style fix
Browse files Browse the repository at this point in the history
  • Loading branch information
analyticalmonk committed Apr 24, 2017
1 parent d4971cd commit f858726
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pandas/tests/dtypes/test_common.py
Expand Up @@ -22,7 +22,8 @@ def test_invalid_dtype_error(self):
with tm.assertRaisesRegexp(TypeError, msg):
pandas_dtype(dtype)

valid_list = [object, 'float64', np.float64, float, np.dtype('float64')]
valid_list = [object, 'float64',
np.float64, float, np.dtype('float64')]
for dtype in valid_list:
pandas_dtype(dtype)

Expand Down

0 comments on commit f858726

Please sign in to comment.