Skip to content

Commit

Permalink
Fix overhang.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyasr committed Mar 25, 2021
1 parent e121743 commit 28ac5b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions python/cudf/cudf/_lib/labeling.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ from cudf._lib.cpp.column.column_view cimport column_view
def label_bins(Column input, Column left_edges, left_inclusive,
Column right_edges, right_inclusive):
cdef inclusive c_left_inclusive = \
inclusive.YES if left_inclusive else inclusive.NO
inclusive.YES if left_inclusive else inclusive.NO
cdef inclusive c_right_inclusive = \
inclusive.YES if right_inclusive else inclusive.NO
inclusive.YES if right_inclusive else inclusive.NO

cdef column_view input_view = input.view()
cdef column_view left_edges_view = left_edges.view()
Expand Down

0 comments on commit 28ac5b0

Please sign in to comment.