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
Description of the problem, including code/CLI snippet
I have code that is used to identify the author of an issue:
issue_author_id = issue.author.id
The author should be a json object that i feel should be an Author object but is being returned as a dictionary, not sure why. So, now i have to convert a number of these calls to issue.author['id']
Expected Behavior
Return the ID of the author object
Actual Behavior
Throws an error:
AttributeError: 'dict' object has no attribute 'id'