Skip to content

Commit

Permalink
Keep xml attributes in response
Browse files Browse the repository at this point in the history
  • Loading branch information
justinabrokwah-okta committed Mar 2, 2023
1 parent 56e332d commit dca7ca3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion okta/api_response.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def build_xml_response(self, response_body):
Args:
response_body ([type]): [description]
"""
self._body = xmltodict.parse(response_body, xml_attribs=False)
self._body = xmltodict.parse(response_body, xml_attribs=True)

def extract_pagination(self, links):
"""
Expand Down

0 comments on commit dca7ca3

Please sign in to comment.