Skip to content

Commit

Permalink
ADD: added response_df concat
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-greening committed Jun 25, 2024
1 parent 0ae9c89 commit ba485f9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions route1io_connectors/google/sa360.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ def get_sa360_data(access_token: str, account_id: str, query: str, login_custome
next_page_token = resp_dict.get("nextPageToken")
if next_page_token is None:
break
response_df = pd.concat(response_dfs)
return response_df

def _validate_http_response(resp: "requests.Response") -> None:
"""Raise error if HTTP status isn't 200"""
Expand Down

0 comments on commit ba485f9

Please sign in to comment.