Hello! I installed obsio in a new conda environment according to the instructions in the readme, and tried running the NRCS example snipped but got the following exception:

I tried making the following modification at line 631 in /obsio/providers/nrcs.py but, it seems not to be fixing the issue.
# self._elem_funcs = np.unique(np.array([_ELEM_EXTRACT_FUNCS[a_elem] for
# a_elem in self.elems]))
self._elem_funcs = np.array([_ELEM_EXTRACT_FUNCS[a_elem] for
a_elem in np.unique(self.elems)])
Any help would be greatly appreciated. Also thank you for your work on a fantastic tool!
Hello! I installed obsio in a new conda environment according to the instructions in the readme, and tried running the NRCS example snipped but got the following exception:
I tried making the following modification at line 631 in /obsio/providers/nrcs.py but, it seems not to be fixing the issue.
Any help would be greatly appreciated. Also thank you for your work on a fantastic tool!