Skip to content

Commit 6685195

Browse files
committed
Remove raise for status
1 parent e0d5f18 commit 6685195

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

gdax/authenticated_client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ def get_accounts(self):
3131
def get_account_history(self, account_id):
3232
result = []
3333
r = requests.get(self.url + '/accounts/{}/ledger'.format(account_id), auth=self.auth, timeout=self.timeout)
34-
# r.raise_for_status()
3534
r_json = self._determine_response(r)
3635
result.append(r_json)
3736
if "cb-after" in r.headers:

0 commit comments

Comments
 (0)