Refactor help text for clarity and update configuration links in help.py; standardize variable naming in cli.py

This commit is contained in:
mrT23
2024-03-25 08:51:59 +02:00
parent 1701eb5b07
commit 07f5025b03
2 changed files with 10 additions and 161 deletions

View File

@ -52,8 +52,8 @@ def set_parser():
def run_command(pr_url, command):
# Preparing the command
run_command = f"--pr_url={pr_url} {command.lstrip('/')}"
args = set_parser().parse_args(run_command.split())
run_command_str = f"--pr_url={pr_url} {command.lstrip('/')}"
args = set_parser().parse_args(run_command_str.split())
# Run the command. Feedback will appear in GitHub PR comments
run(args=args)