mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
Big diff: Use new "|" union syntax (#5872)
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
from _typeshed import SupportsItems
|
||||
from typing import Generic, Iterable, Optional, Tuple, TypeVar
|
||||
from typing import Generic, Iterable, Tuple, TypeVar
|
||||
|
||||
_T = TypeVar("_T")
|
||||
|
||||
class TopologicalSorter(Generic[_T]):
|
||||
def __init__(self, graph: Optional[SupportsItems[_T, Iterable[_T]]] = ...) -> None: ...
|
||||
def __init__(self, graph: SupportsItems[_T, Iterable[_T]] | None = ...) -> None: ...
|
||||
def add(self, node: _T, *predecessors: _T) -> None: ...
|
||||
def prepare(self) -> None: ...
|
||||
def is_active(self) -> bool: ...
|
||||
|
||||
Reference in New Issue
Block a user