mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-02-25 19:17:16 +08:00
Manual changes of Any union to Incomplete in stubs folder (#9566)
- ClassVar[Any | None] - Missed previous changes due to alias - Manual review of leftover Any unions (`| Any` and `Any |`)
This commit is contained in:
@@ -16,7 +16,7 @@ class TomlEncoder(Generic[_MappingT]):
|
||||
@overload
|
||||
def __init__(self: TomlEncoder[dict[str, Any]], _dict: type[dict[str, Any]] = ..., preserve: bool = ...) -> None: ...
|
||||
def get_empty_table(self) -> _MappingT: ...
|
||||
def dump_list(self, v: Iterable[object]) -> str: ...
|
||||
def dump_list(self, v: Iterable[Any]) -> str: ...
|
||||
def dump_inline_table(self, section: dict[str, Any] | Any) -> str: ...
|
||||
def dump_value(self, v: Any) -> str: ...
|
||||
def dump_sections(self, o: _MappingT, sup: str) -> tuple[str, _MappingT]: ...
|
||||
|
||||
Reference in New Issue
Block a user