From 59016e541110fd7f925cee2d5a8367acb1ea1e3d Mon Sep 17 00:00:00 2001 From: TatLead Date: Tue, 12 Mar 2024 01:32:41 +0000 Subject: [PATCH] Update Factorio.py --- Factorio.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Factorio.py b/Factorio.py index ce6ed26..caa84a3 100644 --- a/Factorio.py +++ b/Factorio.py @@ -34,7 +34,7 @@ def find(self, *, host: str, port: int): return result def _fetch(self) -> list: - username, token = os.getenv("FACTORIO_USERNAME") + username = os.getenv("FACTORIO_USERNAME") token = os.getenv("FACTORIO_TOKEN") url = f"https://multiplayer.factorio.com/get-games?username={username}&token={token}" data = self._fetch_url(url)