Typecast np dtype description to a tuple
parent
4570b06c26
commit
2d3c685e19
|
@ -567,7 +567,7 @@ async def open_feed(
|
||||||
shm_token = data['shm_token']
|
shm_token = data['shm_token']
|
||||||
|
|
||||||
# XXX: msgspec won't relay through the tuples XD
|
# XXX: msgspec won't relay through the tuples XD
|
||||||
shm_token['dtype_descr'] = list(
|
shm_token['dtype_descr'] = tuple(
|
||||||
map(tuple, shm_token['dtype_descr']))
|
map(tuple, shm_token['dtype_descr']))
|
||||||
|
|
||||||
assert shm_token == shm.token # sanity
|
assert shm_token == shm.token # sanity
|
||||||
|
|
Loading…
Reference in New Issue