summaryrefslogtreecommitdiff
path: root/modules/input_handlers/input_handler.py
diff options
context:
space:
mode:
Diffstat (limited to 'modules/input_handlers/input_handler.py')
-rw-r--r--modules/input_handlers/input_handler.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/input_handlers/input_handler.py b/modules/input_handlers/input_handler.py
index 82a2830..3db042c 100644
--- a/modules/input_handlers/input_handler.py
+++ b/modules/input_handlers/input_handler.py
@@ -3,9 +3,9 @@ from abc import ABC, abstractmethod
class InputHandler(ABC):
@abstractmethod
- def get_input(self):
+ def get_input(self) -> str:
pass
@abstractmethod
- def cleanup(self):
+ def cleanup(self) -> None:
pass \ No newline at end of file