Skip to content

Commit 0961fc4

Browse files
committed
add LongParticles (uint64_t) to type detection
1 parent 66df3bf commit 0961fc4

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

pyapr/io/io_api.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,8 @@ def initialize_particles_type(typestr):
122122
return pyapr.FloatParticles()
123123
if typestr == 'uint8':
124124
return pyapr.ByteParticles()
125+
if typestr == 'uint64':
126+
return pyapr.LongParticles()
125127

126128
print('deduced datatype {} is currently not supported - returning None'.format(typestr))
127129
return None

0 commit comments

Comments
 (0)