From 1efcf6780ce905c42248a573bf2c479a8757a599 Mon Sep 17 00:00:00 2001 From: --global <--global> Date: Tue, 22 Oct 2024 13:18:35 +0000 Subject: [PATCH] feedback --- .submodules/setup/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.submodules/setup/__main__.py b/.submodules/setup/__main__.py index 28f2b4bf..a55c634c 100644 --- a/.submodules/setup/__main__.py +++ b/.submodules/setup/__main__.py @@ -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()