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)