From f7c1baf281f4300f74297a06f099858127903326 Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Tue, 10 Oct 2023 17:04:45 +0200 Subject: [PATCH] Adjust help messages for ryujinx tasks as well --- ryujinx_mako/commands/exec_ryujinx_tasks.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ryujinx_mako/commands/exec_ryujinx_tasks.py b/ryujinx_mako/commands/exec_ryujinx_tasks.py index 0c69e65..5a932e0 100644 --- a/ryujinx_mako/commands/exec_ryujinx_tasks.py +++ b/ryujinx_mako/commands/exec_ryujinx_tasks.py @@ -31,14 +31,14 @@ class ExecRyujinxTasks(GithubSubcommand): "--event-name", type=str, required=True, - help="The name of the event that triggered the workflow run.", + help="the name of the event that triggered the workflow run", ) parser.add_argument( "--event-path", type=str, required=True, - help="The path to the file on the runner that contains the full " - "event webhook payload.", + help="the path to the file on the runner that contains the full " + "event webhook payload", ) parser.add_argument( "-w", @@ -46,19 +46,19 @@ class ExecRyujinxTasks(GithubSubcommand): type=Path, required=False, default=Path(os.getcwd()), - help="The working directory on the runner." + help="the working directory on the runner" ) parser.add_argument( "repo_path", type=str, required=True, - help="The path to a GitHub repository." + 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.", + help="The unique identifier of the workflow run", ) super().__init__(parser)