Skip to content

Commit

Permalink
missing parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzamora committed May 30, 2023
1 parent 2df007c commit e3e31f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/nvtabular/inference/categorify.cc
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ namespace nvtabular
for (int64_t i = 0; i < input.size(); ++i)
{
auto it = mapping_int.find(static_cast<int64_t>(input_data[i]));
if it == mapping_int.end()
if (it == mapping_int.end())
{
output_data[i] = py::cast<bool>(isnull(input_data[i])) ? NULL_INDEX : OOV_INDEX;
}
Expand Down

0 comments on commit e3e31f9

Please sign in to comment.