mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-08-13 03:21:07 +08:00
Remove unnecessary = ...s; bump pyright test dependency to 1.1.301 (#9972)
This commit is contained in:
@@ -1,22 +1,23 @@
|
||||
import sys
|
||||
from typing import ClassVar
|
||||
|
||||
if sys.platform == "win32":
|
||||
from . import win32
|
||||
|
||||
class WinColor:
|
||||
BLACK: int = ...
|
||||
BLUE: int = ...
|
||||
GREEN: int = ...
|
||||
CYAN: int = ...
|
||||
RED: int = ...
|
||||
MAGENTA: int = ...
|
||||
YELLOW: int = ...
|
||||
GREY: int = ...
|
||||
BLACK: ClassVar[int]
|
||||
BLUE: ClassVar[int]
|
||||
GREEN: ClassVar[int]
|
||||
CYAN: ClassVar[int]
|
||||
RED: ClassVar[int]
|
||||
MAGENTA: ClassVar[int]
|
||||
YELLOW: ClassVar[int]
|
||||
GREY: ClassVar[int]
|
||||
|
||||
class WinStyle:
|
||||
NORMAL: int = ...
|
||||
BRIGHT: int = ...
|
||||
BRIGHT_BACKGROUND: int = ...
|
||||
NORMAL: ClassVar[int]
|
||||
BRIGHT: ClassVar[int]
|
||||
BRIGHT_BACKGROUND: ClassVar[int]
|
||||
|
||||
class WinTerm:
|
||||
def __init__(self) -> None: ...
|
||||
|
||||
Reference in New Issue
Block a user