Skip to content

Commit c3e784f

Browse files
committed
pre-commit changes
1 parent 0fd3c66 commit c3e784f

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pandas/core/dtypes/dtypes.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -468,9 +468,7 @@ def _hash_categories(self) -> int:
468468
# error: Incompatible types in assignment (expression has type
469469
# "List[ndarray]", variable has type "ndarray")
470470
cat_array = [cat_array] # type: ignore[assignment]
471-
combined_hashed = combine_hash_arrays(
472-
iter(cat_array), num_items=len(cat_array)
473-
)
471+
combined_hashed = combine_hash_arrays(iter(cat_array), num_items=len(cat_array))
474472
return np.bitwise_xor.reduce(combined_hashed)
475473

476474
@classmethod

0 commit comments

Comments
 (0)