Skip to content

Commit 2e679ea

Browse files
committed
fix style
1 parent 065df25 commit 2e679ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/core/categorical.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2066,4 +2066,5 @@ def _factorize_from_iterables(iterables, dropna=True):
20662066
if len(iterables) == 0:
20672067
# For consistency, it should return a list of 2 tuples.
20682068
return [(), ()]
2069-
return lzip(*[_factorize_from_iterable(it, dropna=dropna) for it in iterables])
2069+
return lzip(*[_factorize_from_iterable(it, dropna=dropna)
2070+
for it in iterables])

0 commit comments

Comments
 (0)