diff options
| author | Peter LaFosse <peter@vector35.com> | 2020-05-02 11:05:36 -0400 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2020-05-03 13:20:56 -0400 |
| commit | 8c7f25020b78168a94cb7a4e0c928b7afe9a6919 (patch) | |
| tree | 2c1d073a44b962322d4526a6047f9b506fb5c6d1 /python/interaction.py | |
| parent | 7934b29ab5aae1f50c054cca60a95f171758737d (diff) | |
return NotImplemented instead of None to placate the linter
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") |
