1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-15 00:30:33 +03:00

removed parens around tuple unpack

This commit is contained in:
A_D 2020-09-18 23:19:44 +02:00
parent e930911415
commit f8523e0a9f
No known key found for this signature in database
GPG Key ID: 4BE9EB7DF45076C4

View File

@ -536,7 +536,7 @@ def worker() -> None:
if creds is None:
raise ValueError("Unexpected lack of credentials")
(username, apikey) = creds
username, apikey = creds
data = {
'commanderName': username.encode('utf-8'),
'apiKey': apikey,