Skip to content

Commit

Permalink
flake8.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdice committed Sep 28, 2021
1 parent 6d90895 commit 4f9edfa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion python/cudf/cudf/_lib/reduce.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,8 @@ def scan(scan_op, Column incol, inclusive, **kwargs):
cdef unique_ptr[column] c_result
cdef Aggregation cython_agg = make_aggregation(scan_op, kwargs)

cdef scan_type c_inclusive = scan_type.INCLUSIVE if inclusive else scan_type.EXCLUSIVE
cdef scan_type c_inclusive = \
scan_type.INCLUSIVE if inclusive else scan_type.EXCLUSIVE

with nogil:
c_result = move(cpp_scan(
Expand Down

0 comments on commit 4f9edfa

Please sign in to comment.