fix(python-client): fix get_resource

This commit is contained in:
Ruben Fiszel
2022-11-03 08:56:00 +01:00
parent 29ab17a5f7
commit 685073799f

View File

@@ -129,7 +129,7 @@ def get_resource(path: str) -> Dict[str, Any]:
if isinstance(parsed.value, Unset):
return {}
raw_dict = parsed.value.to_dict()
raw_dict = parsed.value
res = _transform_leaves(raw_dict)
return res