Skip to content

Commit

Permalink
feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
--global committed Oct 22, 2024
1 parent 46dc399 commit 1efcf67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .submodules/setup/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ def print_intro():
answers = inquirer.prompt(
[
inquirer.Confirm(
"exit",
message="Have you already set up your container and would like exit?",
"proceed",
message="Would you like to proceed with setting up your dev container?",
)
]
)

if answers and t.cast(bool, answers["exit"]):
if answers and not t.cast(bool, answers["proceed"]):
sys.exit()


Expand Down

0 comments on commit 1efcf67

Please sign in to comment.