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"')