Skip to content

Commit

Permalink
Merge pull request #27 from uJhin/1.2.2
Browse files Browse the repository at this point in the history
[Update] Update Version 1.2.2.4
  • Loading branch information
uJhin committed Jan 13, 2022
2 parents e506327 + bb42b6a commit 4fa2878
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion client/python/upbit/authentication.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class APIKeyAuthenticator(Authenticator):

MAPPER = "swg_mapper.json"
QUERY_PARAMS = tuple("uuids", "txids", "identifiers", "states")
QUERY_PARAMS = ("uuids", "txids", "identifiers", "states")


def __init__(
Expand Down
6 changes: 3 additions & 3 deletions client/python/upbit/pkginfo.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ def _get_versions(package_name):
return sorted(versions, key=LooseVersion, reverse=True)


PACKAGE_NAME = 'upbit-client'
PACKAGE_NAME = "upbit-client"

OPEN_API_VERSION = '1.2.2'
CURRENT_VERSION = OPEN_API_VERSION+'.3'
OPEN_API_VERSION = "1.2.2"
CURRENT_VERSION = OPEN_API_VERSION+".4"

RELEASED_VERSION = _get_versions(PACKAGE_NAME)
LATEST_VERSION = RELEASED_VERSION[0]
Expand Down
4 changes: 2 additions & 2 deletions client/python/upbit/websocket.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class UpbitWebSocket:
"""

WEBSOCKET_URI = "wss://api.upbit.com/websocket/v1"
FIELD_TYPES = tuple("ticker", "trade", "orderbook")
FIELD_FORMATS = tuple("SIMPLE", "DEFAULT")
FIELD_TYPES = ("ticker", "trade", "orderbook")
FIELD_FORMATS = ("SIMPLE", "DEFAULT")


def __init__(
Expand Down

0 comments on commit 4fa2878

Please sign in to comment.