`scheme.py` contains this import: ```python from curses import termattrs ``` Even though it doesn't use `termattrs` for anything. The module can't be used on Windows because of this import, since `curses` isn't available there.
scheme.pycontains this import:Even though it doesn't use
termattrsfor anything. The module can't be used on Windows because of this import, sincecursesisn't available there.