Skip to content

Commit

Permalink
Fixed small things found in PR
Browse files Browse the repository at this point in the history
  • Loading branch information
bpross committed Feb 25, 2018
1 parent 88cdb65 commit 2f6c15e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion gdax/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ def message(self):
def message(self, message):
self._message = message


@property
def code(self):
return self._code
Expand Down
2 changes: 1 addition & 1 deletion gdax/public_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ def _determine_response(self, response):
"""
Determines if GDAX response is success or error
If success, returns response json
If error, raises appropiate GdaxException
If error, raises appropriate GdaxException
"""
if self._is_http_success(response.status_code):
return response.json()
Expand Down

0 comments on commit 2f6c15e

Please sign in to comment.