Having newly installed windows-curses
(and restarted VS Code), I am attempting to write a context manager to abstract away curses.initscr()
and curses.endwin()
. However, in the problems pane, Pylint keeps throwing this error: Module 'curses' has no 'endwin' member
. The file runs without a problem. Why might this be happening? Does it indicate a problem, or should I just turn it off?
Currently discovered members Pylint claims are missing:
endwin
error
napms
Update: Adding this code:
"python.linting.pylintArgs": [
"--extension-pkg-whitelist=curses"
]
to settings.json changed nothing.