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 24, 2023
1 parent 54aad75 commit 409df30
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 @@ -757,7 +757,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 409df30

Please sign in to comment.