Make sure signature keys are always sorted
I suggest to add a check_consistency method at reading time.
You can use:
import numpy as np
a = np.array(["A", "B", "C"])
np.all(a[:-1] <= a[1:])
Needs to be a numpy array
I suggest to add a check_consistency method at reading time.
You can use:
import numpy as np
a = np.array(["A", "B", "C"])
np.all(a[:-1] <= a[1:])
Needs to be a numpy array