Skip to content

Commit 2ef50ae

Browse files
committed
Minor change
1 parent 5816381 commit 2ef50ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pandas/core/arrays/categorical.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2691,4 +2691,4 @@ def _factorize_from_iterables(iterables):
26912691
if len(iterables) == 0:
26922692
# For consistency, it should return a list of 2 lists.
26932693
return [[], []]
2694-
return map(list, zip(*[_factorize_from_iterable(it) for it in iterables]))
2694+
return map(list, zip(*(_factorize_from_iterable(it) for it in iterables)))

0 commit comments

Comments
 (0)