Skip to content

Commit 4fa2878

Browse files
authored
Merge pull request #27 from uJhin/1.2.2
[Update] Update Version 1.2.2.4
2 parents e506327 + bb42b6a commit 4fa2878

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

client/python/upbit/authentication.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
class APIKeyAuthenticator(Authenticator):
1212

1313
MAPPER = "swg_mapper.json"
14-
QUERY_PARAMS = tuple("uuids", "txids", "identifiers", "states")
14+
QUERY_PARAMS = ("uuids", "txids", "identifiers", "states")
1515

1616

1717
def __init__(

client/python/upbit/pkginfo.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@ def _get_versions(package_name):
2626
return sorted(versions, key=LooseVersion, reverse=True)
2727

2828

29-
PACKAGE_NAME = 'upbit-client'
29+
PACKAGE_NAME = "upbit-client"
3030

31-
OPEN_API_VERSION = '1.2.2'
32-
CURRENT_VERSION = OPEN_API_VERSION+'.3'
31+
OPEN_API_VERSION = "1.2.2"
32+
CURRENT_VERSION = OPEN_API_VERSION+".4"
3333

3434
RELEASED_VERSION = _get_versions(PACKAGE_NAME)
3535
LATEST_VERSION = RELEASED_VERSION[0]

client/python/upbit/websocket.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ class UpbitWebSocket:
2121
"""
2222

2323
WEBSOCKET_URI = "wss://api.upbit.com/websocket/v1"
24-
FIELD_TYPES = tuple("ticker", "trade", "orderbook")
25-
FIELD_FORMATS = tuple("SIMPLE", "DEFAULT")
24+
FIELD_TYPES = ("ticker", "trade", "orderbook")
25+
FIELD_FORMATS = ("SIMPLE", "DEFAULT")
2626

2727

2828
def __init__(

0 commit comments

Comments
 (0)