()
| 625 | |
| 626 | |
| 627 | def main(): |
| 628 | try: |
| 629 | user_name = input("What is your name: ") |
| 630 | except KeyboardInterrupt: |
| 631 | print("") |
| 632 | else: |
| 633 | black_jack = BlackJack(username=user_name) |
| 634 | black_jack.play() |
| 635 | |
| 636 | |
| 637 | if __name__ == "__main__": |
no test coverage detected