Remove an useless input method which was needed with threads

This commit is contained in:
mathieui 2014-12-19 22:06:11 +01:00
parent f0dac14e32
commit d7e2a46070
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3

View file

@ -69,17 +69,6 @@ class YesNoInput(Win):
if key.lower() in self.key_func:
self.key_func[key]()
def prompt(self):
"""Monopolizes the input while waiting for a recognized keypress"""
def cb(key):
if key in self.key_func:
self.key_func[key]()
if self.value is None:
# We didnt finish with this prompt, continue monopolizing
# it again until value is set
keyboard.continuation_keys_callback = cb
keyboard.continuation_keys_callback = cb
def on_delete(self):
return