We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66df3bf commit 0961fc4Copy full SHA for 0961fc4
pyapr/io/io_api.py
@@ -122,6 +122,8 @@ def initialize_particles_type(typestr):
122
return pyapr.FloatParticles()
123
if typestr == 'uint8':
124
return pyapr.ByteParticles()
125
+ if typestr == 'uint64':
126
+ return pyapr.LongParticles()
127
128
print('deduced datatype {} is currently not supported - returning None'.format(typestr))
129
return None
0 commit comments