From 5c5755185bcd903a99e7d04ed477be1841022c0a Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Wed, 5 Jun 2024 20:24:19 +0200 Subject: [PATCH] remove debug print --- worlds/LauncherComponents.py | 1 - 1 file changed, 1 deletion(-) diff --git a/worlds/LauncherComponents.py b/worlds/LauncherComponents.py index 6e6ae80e7637..2065172d99ce 100644 --- a/worlds/LauncherComponents.py +++ b/worlds/LauncherComponents.py @@ -96,7 +96,6 @@ def _install_apworld(apworld_path: str = ""): try: import zipfile - print(pathlib.Path(apworld_path.name).stem + "/__init__.py") zipfile.ZipFile(apworld_path).open(pathlib.Path(apworld_path.name).stem + "/__init__.py") except ValueError as e: raise Exception("Archive appears invalid or damaged.") from e