(self, word, function, keys)
| 28 | self.logo = logo |
| 29 | |
| 30 | def check_input(self, word, function, keys): |
| 31 | if word == "": |
| 32 | self.clear_scr() |
| 33 | function() |
| 34 | |
| 35 | if not word in keys: |
| 36 | print('\033[91m Unknown Value..') |
| 37 | sleep(1) |
| 38 | self.clear_scr() |
| 39 | function() |
| 40 | |
| 41 | def menu(self): |
| 42 | self.clear_scr() |
no test coverage detected