Bug in "Getting Started" example code on main wiki page
pcoetzeemsft opened this issue · 0 comments
pcoetzeemsft commented
Line 21: "for project in get_projects_response.value" should be "for project in get_projects_response"
whole section of the example can be simplified to:
for project in get_projects_response:
pprint.pprint(project.name)