Skip to content

Commit

Permalink
fix: lib dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jan 17, 2025
1 parent 4381a55 commit b991f8c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion qbosdk/apis/api_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,8 @@ def _query_get_all_generator(self, object_type: str, url: str) -> Generator[Dict
if err.response.status_code == 500:
raise InternalServerError('Internal server error', err.response.text) from err

raise QuickbooksOnlineSDKError('Error: {0}'.format(err.response.status_code), err.response.text) from err
raise QuickbooksOnlineSDKError('Error: {0}'.format(err.response.status_code),
err.response.text) from err

def _query(self, url: str) -> List[Dict]:
"""
Expand Down

0 comments on commit b991f8c

Please sign in to comment.