mirror of
https://github.com/Ryujinx/Ryujinx-Mako.git
synced 2025-08-16 06:21:11 +00:00
Remove required argument for positionals
This commit is contained in:
parent
f7c1baf281
commit
86f5fc3e0f
|
@ -51,13 +51,11 @@ class ExecRyujinxTasks(GithubSubcommand):
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"repo_path",
|
"repo_path",
|
||||||
type=str,
|
type=str,
|
||||||
required=True,
|
|
||||||
help="full name of the GitHub repository (format: OWNER/REPO)",
|
help="full name of the GitHub repository (format: OWNER/REPO)",
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"run_id",
|
"run_id",
|
||||||
type=int,
|
type=int,
|
||||||
required=True,
|
|
||||||
help="The unique identifier of the workflow run",
|
help="The unique identifier of the workflow run",
|
||||||
)
|
)
|
||||||
super().__init__(parser)
|
super().__init__(parser)
|
||||||
|
|
Loading…
Reference in a new issue