mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-01-27 21:32:12 +08:00
@@ -40,7 +40,7 @@ class _inherit: ...
|
||||
|
||||
inherit: Any
|
||||
|
||||
class combined(tuple[Any]):
|
||||
class combined(tuple[Any, ...]):
|
||||
def __new__(cls, *args): ...
|
||||
def __init__(self, *args) -> None: ...
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
from collections.abc import Mapping
|
||||
|
||||
class _TokenType(tuple[str]):
|
||||
class _TokenType(tuple[str, ...]):
|
||||
parent: _TokenType | None
|
||||
def split(self) -> list[_TokenType]: ...
|
||||
subtypes: set[_TokenType]
|
||||
|
||||
Reference in New Issue
Block a user