From f8523e0a9f1e4b57c57fcc0cf540223eee01a966 Mon Sep 17 00:00:00 2001 From: A_D Date: Fri, 18 Sep 2020 23:19:44 +0200 Subject: [PATCH] removed parens around tuple unpack --- plugins/edsm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/edsm.py b/plugins/edsm.py index 9c3137e9..74127fa5 100644 --- a/plugins/edsm.py +++ b/plugins/edsm.py @@ -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,