This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from os.path import exists | |
| class InputController(object): | |
| """Controller class for controlling user inputs | |
| Methods | |
| ------- | |
| get_bool(prompt : str) -> bool | |
| Checks if the answer is yes(y) or no(n). |