Re-export _curses._CursesWindow from curses (#3117)

This commit is contained in:
Anthony Sottile
2019-07-13 08:01:10 -07:00
committed by Jelle Zijlstra
parent 2a57ce2cec
commit f76b7b273b

View File

@@ -1,4 +1,5 @@
from _curses import * # noqa: F403
from _curses import _CursesWindow as _CursesWindow
from typing import TypeVar, Callable, Any
_T = TypeVar('_T')