Bizhawk: adds typing to bizhawk component launch (#4505)
This commit is contained in:
parent
23ea3c0efc
commit
2b9fa89050
|
@ -241,7 +241,7 @@ def _patch_and_run_game(patch_file: str):
|
||||||
return {}
|
return {}
|
||||||
|
|
||||||
|
|
||||||
def launch(*launch_args) -> None:
|
def launch(*launch_args: str) -> None:
|
||||||
async def main():
|
async def main():
|
||||||
parser = get_base_parser()
|
parser = get_base_parser()
|
||||||
parser.add_argument("patch_file", default="", type=str, nargs="?", help="Path to an Archipelago patch file")
|
parser.add_argument("patch_file", default="", type=str, nargs="?", help="Path to an Archipelago patch file")
|
||||||
|
|
Loading…
Reference in New Issue