From 2b9fa890509df1d53a68be0758119a767faf8aa8 Mon Sep 17 00:00:00 2001 From: qwint Date: Fri, 17 Jan 2025 15:22:36 -0500 Subject: [PATCH] Bizhawk: adds typing to bizhawk component launch (#4505) --- worlds/_bizhawk/context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/_bizhawk/context.py b/worlds/_bizhawk/context.py index 8d029f92..e20b6551 100644 --- a/worlds/_bizhawk/context.py +++ b/worlds/_bizhawk/context.py @@ -241,7 +241,7 @@ def _patch_and_run_game(patch_file: str): return {} -def launch(*launch_args) -> None: +def launch(*launch_args: str) -> None: async def main(): parser = get_base_parser() parser.add_argument("patch_file", default="", type=str, nargs="?", help="Path to an Archipelago patch file")