Skip to content

Commit

Permalink
Remove raise for status
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross committed Mar 26, 2018
1 parent e0d5f18 commit 6685195
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion gdax/authenticated_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ def get_accounts(self):
def get_account_history(self, account_id):
result = []
r = requests.get(self.url + '/accounts/{}/ledger'.format(account_id), auth=self.auth, timeout=self.timeout)
# r.raise_for_status()
r_json = self._determine_response(r)
result.append(r_json)
if "cb-after" in r.headers:
Expand Down

0 comments on commit 6685195

Please sign in to comment.