Remove required argument for positionals

This commit is contained in:
TSR Berry 2023-10-10 17:10:05 +02:00
parent f7c1baf281
commit 86f5fc3e0f
No known key found for this signature in database
GPG Key ID: 52353C0A4CCA15E2

View File

@ -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)