Skip to content

Commit

Permalink
fix: type promotion
Browse files Browse the repository at this point in the history
  • Loading branch information
agoose77 committed Oct 22, 2023
1 parent 3ce35d4 commit 5b54360
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/awkward/_nplikes/typetracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -744,7 +744,7 @@ def arange(
else:
length = unknown_length

default_int_type = np.int64 if (ak._util.win or ak._util.bits32) else np.int32
default_int_type = np.int32 if (ak._util.win or ak._util.bits32) else np.int64
return TypeTracerArray._new(dtype or default_int_type, (length,))

def meshgrid(
Expand Down

0 comments on commit 5b54360

Please sign in to comment.