blob: 646c666d578840668f82b32940ac6c804316d41d (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
|
from typing import TypedDict
class DesiredWorkerLabel(TypedDict, total=False):
value: str | int
required: bool | None = None
weight: int | None = None
comparator: int | None = (
None # _ClassVar[WorkerLabelComparator] TODO figure out type
)
|