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
Additional context
My code differs slightly from the tutorial in that I'm getting the information you put in a config file from the environment, but other than that it's identical. If I edit kiota_serialization_json/json_parse_node.py and add print(object_dict) right before the for key, val in object_dict.items(): line, I am getting the expected data, but it's not being parsed (it's still a string.)
The text was updated successfully, but these errors were encountered:
Where did you get the code?
[- [ ] Downloaded from GitHub
Describe the bug
_assign_field_values throws AttributeError: 'str' object has no attribute 'items' in kiota_serialization_json/json_parse_node.py
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The code should not throw the exception.
Screenshots
N/A
Desktop (please complete the following information):
Dependency versions
Additional context
My code differs slightly from the tutorial in that I'm getting the information you put in a config file from the environment, but other than that it's identical. If I edit kiota_serialization_json/json_parse_node.py and add
print(object_dict)
right before thefor key, val in object_dict.items():
line, I am getting the expected data, but it's not being parsed (it's still a string.)The text was updated successfully, but these errors were encountered: