diff options
Diffstat (limited to 'python/interaction.py')
| -rw-r--r-- | python/interaction.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/interaction.py b/python/interaction.py index 7226178a..584ce0d5 100644 --- a/python/interaction.py +++ b/python/interaction.py @@ -675,7 +675,7 @@ class InteractionHandler(object): pass def get_text_line_input(self, prompt, title): - return None + return NotImplemented def get_int_input(self, prompt, title): while True: @@ -691,7 +691,7 @@ class InteractionHandler(object): return get_int_input(prompt, title) def get_choice_input(self, prompt, title, choices): - return None + return NotImplemented def get_open_filename_input(self, prompt, ext): return get_text_line_input(prompt, "Open File") |
