From 86f5fc3e0f725e2b80644e161fc4d300daee8f0e Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Tue, 10 Oct 2023 17:10:05 +0200 Subject: [PATCH] Remove required argument for positionals --- ryujinx_mako/commands/exec_ryujinx_tasks.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/ryujinx_mako/commands/exec_ryujinx_tasks.py b/ryujinx_mako/commands/exec_ryujinx_tasks.py index 5a932e0..d9f54d6 100644 --- a/ryujinx_mako/commands/exec_ryujinx_tasks.py +++ b/ryujinx_mako/commands/exec_ryujinx_tasks.py @@ -51,13 +51,11 @@ class ExecRyujinxTasks(GithubSubcommand): parser.add_argument( "repo_path", type=str, - required=True, help="full name of the GitHub repository (format: OWNER/REPO)", ) parser.add_argument( "run_id", type=int, - required=True, help="The unique identifier of the workflow run", ) super().__init__(parser)