Add /describe -c option

This commit is contained in:
zmeir
2023-07-27 17:42:50 +03:00
parent c6d0bacc08
commit 4aa54b9bd4
4 changed files with 25 additions and 5 deletions

View File

@ -73,7 +73,7 @@ def _handle_ask_command(pr_url: str, rest: list):
def _handle_describe_command(pr_url: str, rest: list):
print(f"PR description: {pr_url}")
reviewer = PRDescription(pr_url)
reviewer = PRDescription(pr_url, args=rest)
asyncio.run(reviewer.describe())