Skip to content

Commit 22622a7

Browse files
authored
deploy script: remove backslash from prompt (#491)
2 parents 1ff5a2b + c42ddcc commit 22622a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scripts/deploy/tasks/check_local_main_repo.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ def _run(self, connections: Group) -> GroupResult:
6464
f"{warnings}\n\n"
6565
"Please check the warnings and decide if you want to proceed!"
6666
)
67-
answer: str = input(r"Do you want to proceed? \[y/N] ").lower()
67+
answer: str = input("Do you want to proceed? [y/N] ").lower()
6868
proceed = answer and "y" in answer[0]
6969
group_result = GroupResult()
7070
if proceed:

0 commit comments

Comments
 (0)