From 12d9b8e547b8fde140a6958974760c7a6805d816 Mon Sep 17 00:00:00 2001 From: Jennifer Power Date: Mon, 22 Jan 2024 09:43:36 -0500 Subject: [PATCH] fix: fixes typos in the TrestleBot class in bot.py (#153) Signed-off-by: Jennifer Power --- trestlebot/bot.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/trestlebot/bot.py b/trestlebot/bot.py index 97515fc7..bd5884c0 100644 --- a/trestlebot/bot.py +++ b/trestlebot/bot.py @@ -167,15 +167,15 @@ def run( dry_run: bool = False, ) -> Tuple[str, int]: """ - Run Trestle Bot and returns commit and pull request information. + Runs Trestle Bot logic and returns commit and pull request information. Args: patterns: List of file patterns for `git add` git_provider: Optional configured git provider for interacting with the API - pre_tasks: Optional task list to executing before updating the workspace + pre_tasks: Optional workspace task list to execute before staging files commit_message: Optional commit message for local commit pull_request_title: Optional customized pull request title - check_only: Optional heck if the repo is dirty. Fail if true. + check_only: Optional check if the repo is dirty. Fail if true. dry_run: Only complete local work. Do not push. Returns: