Skip to content

Commit f328a6f

Browse files
committed
Fixed small things found in PR
1 parent 8690c15 commit f328a6f

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

cbpro/public_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def _determine_response(self, response):
5656
"""
5757
Determines if GDAX response is success or error
5858
If success, returns response json
59-
If error, raises appropiate GdaxException
59+
If error, raises appropriate GdaxException
6060
"""
6161
if self._is_http_success(response.status_code):
6262
return response.json()

gdax/exceptions.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ def message(self):
2323
def message(self, message):
2424
self._message = message
2525

26-
2726
@property
2827
def code(self):
2928
return self._code

0 commit comments

Comments
 (0)