Skip to content
/ cudf Public
forked from rapidsai/cudf

Commit

Permalink
Fix logic bug introduced in rapidsai#14730
Browse files Browse the repository at this point in the history
  • Loading branch information
wence- committed Jan 11, 2024
1 parent 1078326 commit d8c71f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/cudf/cudf/core/column/categorical.py
Original file line number Diff line number Diff line change
Expand Up @@ -1373,7 +1373,7 @@ def _concat(

# Find the first non-null column:
head = next(
(obj for obj in objs if not obj.null_count != len(obj)), objs[0]
(obj for obj in objs if obj.null_count != len(obj)), objs[0]
)

# Combine and de-dupe the categories
Expand Down

0 comments on commit d8c71f7

Please sign in to comment.