You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
inp = 'neighbors[ip=2'
def parse_element(inp: str) -> WildDictPath:
for subtype in cls.element_types:
parsed = subtype.parse(inp)
if parsed is not None:
return parsed
> raise InvalidPathException(f"Could not parse path segment {inp}")
E inmanta.util.dict_path.InvalidPathException: Could not parse path segment neighbors[ip=2
The text was updated successfully, but these errors were encountered:
I'd like to identify list element based on a key with dots in the string.
raised error:
The text was updated successfully, but these errors were encountered: