Skip to content

Commit a266c69

Browse files
author
Blake Hawkins
committed
Update test_common.py
Apply black formatting to test_common.py
1 parent b34fc3b commit a266c69

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pandas/tests/dtypes/test_common.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -329,8 +329,8 @@ def test_is_datetimelike():
329329
*ALL_INT_DTYPES,
330330
*to_numpy_dtypes(ALL_INT_DTYPES),
331331
*ALL_EA_INT_DTYPES,
332-
*to_ea_dtypes(ALL_EA_INT_DTYPES)
333-
]
332+
*to_ea_dtypes(ALL_EA_INT_DTYPES),
333+
],
334334
)
335335
def test_is_integer_dtype(dtype):
336336
assert com.is_integer_dtype(dtype)
@@ -359,8 +359,8 @@ def test_is_not_integer_dtype(dtype):
359359
*SIGNED_INT_DTYPES,
360360
*to_numpy_dtypes(SIGNED_INT_DTYPES),
361361
*SIGNED_EA_INT_DTYPES,
362-
*to_ea_dtypes(SIGNED_EA_INT_DTYPES)
363-
]
362+
*to_ea_dtypes(SIGNED_EA_INT_DTYPES),
363+
],
364364
)
365365
def test_is_signed_integer_dtype(dtype):
366366
assert com.is_integer_dtype(dtype)
@@ -393,8 +393,8 @@ def test_is_not_signed_integer_dtype(dtype):
393393
*UNSIGNED_INT_DTYPES,
394394
*to_numpy_dtypes(UNSIGNED_INT_DTYPES),
395395
*UNSIGNED_EA_INT_DTYPES,
396-
*to_ea_dtypes(UNSIGNED_EA_INT_DTYPES)
397-
]
396+
*to_ea_dtypes(UNSIGNED_EA_INT_DTYPES),
397+
],
398398
)
399399
def test_is_unsigned_integer_dtype(dtype):
400400
assert com.is_unsigned_integer_dtype(dtype)

0 commit comments

Comments
 (0)