(self)
| 67 | |
| 68 | class Run: |
| 69 | def decide_operation(self): |
| 70 | user_input = input(": ") |
| 71 | try: |
| 72 | int(user_input) |
| 73 | except: |
| 74 | Interface.change_has_characters(user_input) |
| 75 | else: |
| 76 | Interface().generate_password(int(user_input)) |
| 77 | finally: |
| 78 | print("\n\n") |
| 79 | |
| 80 | def run(self): |
| 81 | menu = f"""Welcome to the PassGen App! |
no test coverage detected