xds_from_zarr will accept any string and return an empty list if nothing is found at the location. It should fall over or at least issue a warning. Pretty sure it used to fall over.
What I Did
from daskms.experimental.zarr import xds_from_zarr
xds = xds_from_zarr('hello')
print(xds)
Description
xds_from_zarr
will accept any string and return an empty list if nothing is found at the location. It should fall over or at least issue a warning. Pretty sure it used to fall over.What I Did