Add TODO to support Concatenate in curses (#7018)

This commit is contained in:
Nikita Sobolev
2022-01-24 13:13:18 +03:00
committed by GitHub
parent 35064a7f75
commit c8bfa511f7

View File

@@ -14,4 +14,6 @@ if sys.platform != "win32":
# available after calling `curses.start_color()`
COLORS: int
COLOR_PAIRS: int
# TODO: wait for `Concatenate` support
# def wrapper(__func: Callable[Concatenate[_CursesWindow, _P], _T], *arg: _P.args, **kwds: _P.kwargs) -> _T: ...
def wrapper(__func: Callable[..., _T], *arg: Any, **kwds: Any) -> _T: ...