Skip to content

Commit bdac267

Browse files
committed
fix(portaswitch): remove redundant token parameter in login API call
1 parent 2e4a66c commit bdac267

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/bss/adapters/portaswitch/api/account.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def login(self, login: str, password: str) -> dict:
112112
113113
"""
114114
return self.__send_request(
115-
module="Session", method="login", params={"login": login, "password": password, "token": password}
115+
module="Session", method="login", params={"login": login, "password": password}
116116
)
117117

118118
def logout(self, access_token: str) -> dict:

0 commit comments

Comments
 (0)