You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
184 B

  1. import cmd2
  2. class MainLoop(cmd2.Cmd):
  3. """Loop for wordscape commands
  4. """
  5. def __init__(self):
  6. letters = None
  7. removed = set()
  8. super().__init__()