Skip to content

Commit 226b5ea

Browse files
committed
API-10525: keep original order of arguments in CustomerRTMx class constructors
1 parent 32f320c commit 226b5ea

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

livechat/customer/rtm/api/v33.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class CustomerRtmV33:
1111
''' Customer RTM API client class in version 3.3. '''
12-
def __init__(self, base_url: str, license_id: str):
12+
def __init__(self, license_id: str, base_url: str):
1313
if isinstance(license_id, (int, str)):
1414
self.ws = WebsocketClient(
1515
url=

livechat/customer/rtm/api/v34.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class CustomerRtmV34:
1111
''' Customer RTM API client class in version 3.4. '''
12-
def __init__(self, base_url: str, organization_id: str):
12+
def __init__(self, organization_id: str, base_url: str):
1313
if isinstance(organization_id, str):
1414
self.ws = WebsocketClient(
1515
url=

livechat/customer/rtm/api/v35.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class CustomerRtmV35:
1111
''' Customer RTM API client class in version 3.5. '''
12-
def __init__(self, base_url: str, organization_id: str):
12+
def __init__(self, organization_id: str, base_url: str):
1313
if isinstance(organization_id, str):
1414
self.ws = WebsocketClient(
1515
url=

0 commit comments

Comments
 (0)