mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 12:44:28 +08:00
Big diff: use lower-case list and dict (#5888)
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
from typing import IO, Any, Iterable, List, Tuple
|
||||
from typing import IO, Any, Iterable, Tuple
|
||||
|
||||
AS_IS: None
|
||||
_FontType = Tuple[str, bool, bool, bool]
|
||||
@@ -28,9 +28,9 @@ class NullFormatter:
|
||||
class AbstractFormatter:
|
||||
writer: NullWriter
|
||||
align: str | None
|
||||
align_stack: List[str | None]
|
||||
font_stack: List[_FontType]
|
||||
margin_stack: List[int]
|
||||
align_stack: list[str | None]
|
||||
font_stack: list[_FontType]
|
||||
margin_stack: list[int]
|
||||
spacing: str | None
|
||||
style_stack: Any
|
||||
nospace: int
|
||||
|
||||
Reference in New Issue
Block a user