mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-06 21:43:59 +08:00
[curses] Revert Final for LINES and COLS (#14764)
This commit is contained in:
@@ -14,8 +14,9 @@ _T = TypeVar("_T")
|
||||
_P = ParamSpec("_P")
|
||||
|
||||
# available after calling `curses.initscr()`
|
||||
LINES: Final[int]
|
||||
COLS: Final[int]
|
||||
# not `Final` as it can change during the terminal resize:
|
||||
LINES: int
|
||||
COLS: int
|
||||
|
||||
# available after calling `curses.start_color()`
|
||||
COLORS: Final[int]
|
||||
|
||||
Reference in New Issue
Block a user