Jasper Bussemaker
Jasper Bussemaker
I'm running into the same issue, however already for a bit simpler (I think) configuration space: - 3 categorical params a = (A, B), b = (C, D), c =...
@capaulson what about appdirs (https://pypi.org/project/appdirs/)? That one should offer the cross-platform user-directory approach that you need.
Small bug fix in the equality comparisons: For `EnumDefinitionImpl`: ```python def __eq__(self, other): if isinstance(other, EnumDefinitionImpl): return other.code == self.code if isinstance(other, (PermissibleValues, str)): return other == self.code return vars(self)...
Yes this is definitely an important feature for LinkML's Python interface :+1: