Skip to content

Commit

Permalink
deploy script: remove backslash from prompt (#491)
Browse files Browse the repository at this point in the history
  • Loading branch information
Flova committed Jun 20, 2024
2 parents 1ff5a2b + c42ddcc commit 22622a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/deploy/tasks/check_local_main_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 22622a7

Please sign in to comment.