From c42ddccafd635b96a907db1aff6d412e765ad649 Mon Sep 17 00:00:00 2001 From: Timon Engelke Date: Thu, 20 Jun 2024 15:43:38 +0200 Subject: [PATCH] Remove backslash from prompt --- scripts/deploy/tasks/check_local_main_repo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy/tasks/check_local_main_repo.py b/scripts/deploy/tasks/check_local_main_repo.py index a708db841..bd0ce8b0f 100644 --- a/scripts/deploy/tasks/check_local_main_repo.py +++ b/scripts/deploy/tasks/check_local_main_repo.py @@ -64,7 +64,7 @@ def _run(self, connections: Group) -> GroupResult: f"{warnings}\n\n" "Please check the warnings and decide if you want to proceed!" ) - answer: str = input(r"Do you want to proceed? \[y/N] ").lower() + answer: str = input("Do you want to proceed? [y/N] ").lower() proceed = answer and "y" in answer[0] group_result = GroupResult() if proceed: