From 36ff75576c174a8656ef5cb9f418fab4c20e253a Mon Sep 17 00:00:00 2001 From: Deepak Mallubhotla Date: Tue, 21 May 2024 15:55:25 -0500 Subject: [PATCH] chore: removes redundant import --- deepdog/cli/util/confirm.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/deepdog/cli/util/confirm.py b/deepdog/cli/util/confirm.py index 9f19582..7a30d95 100644 --- a/deepdog/cli/util/confirm.py +++ b/deepdog/cli/util/confirm.py @@ -1,5 +1,3 @@ -import sys - _RESPONSE_MAP = { "yes": True, "ye": True, @@ -22,4 +20,4 @@ def confirm_prompt(question: str) -> bool: if choice in _RESPONSE_MAP: return _RESPONSE_MAP[choice] else: - print(f'Respond with "yes" or "no"') + print('Respond with "yes" or "no"')