Skip to content

Commit

Permalink
Add AppVeyor fix - suggested by pitrou
Browse files Browse the repository at this point in the history
  • Loading branch information
AlenkaF committed Sep 14, 2022
1 parent 800400a commit 21d98f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyarrow/_compute.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -2613,7 +2613,7 @@ def register_scalar_function(func, function_name, function_doc, in_types,
raise TypeError(
"in_types must be a dictionary of DataType")

c_arity = CArity(num_args, func_spec.varargs)
c_arity = CArity(<int> num_args, func_spec.varargs)

if "summary" not in function_doc:
raise ValueError("Function doc must contain a summary")
Expand Down

0 comments on commit 21d98f7

Please sign in to comment.