Skip to content

Commit

Permalink
Merge branch 'main' into laiacano/categorify-part-files
Browse files Browse the repository at this point in the history
  • Loading branch information
nv-alaiacano committed Jun 7, 2023
2 parents 4fe07dd + 66c6e3a commit aabaa92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion nvtabular/ops/categorify.py
Original file line number Diff line number Diff line change
Expand Up @@ -1693,7 +1693,7 @@ def _encode(
expr = df[selection_l.names[0]].isna()
for _name in selection_l.names[1:]:
expr = expr & df[_name].isna()
nulls = df[expr].index
nulls = df[expr].index.values

if use_collection or not search_sorted:
if list_col:
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def assert_eq(a, b, *args, **kwargs):

@pytest.fixture(scope="module")
def client():
distributed = Distributed(n_workers=2)
distributed = Distributed()
cluster = distributed.cluster
client = distributed.client
yield client
Expand Down

0 comments on commit aabaa92

Please sign in to comment.