We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebfea8 commit 4a67d0fCopy full SHA for 4a67d0f
tigeropen/quote/response/quote_grab_permission_response.py
@@ -18,4 +18,5 @@ def parse_response_content(self, response_content):
18
if 'is_success' in response:
19
self._is_success = response['is_success']
20
21
- self.permissions = string_utils.camel_to_underline_obj(self.data)
+ if self.data:
22
+ self.permissions = string_utils.camel_to_underline_obj(self.data)
0 commit comments