Skip to content

Commit

Permalink
Adds permission ids
Browse files Browse the repository at this point in the history
  • Loading branch information
vmesel committed Dec 19, 2023
1 parent 5a65245 commit deffc93
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion target_salesforce_v3/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,6 @@ def get_fields_for_object(self, object_type):
obj_req = self.request_api("GET", endpoint=f"sobjects/{object['name']}/describe").json()
return {f["name"]: f for f in obj_req.get("fields", [])}


def validate_response(self, response: requests.Response) -> None:
"""Validate HTTP response."""
if response.status_code in [429] or 500 <= response.status_code < 600:
Expand Down

0 comments on commit deffc93

Please sign in to comment.