Closed mx-moth closed 4 months ago
The primary change is updating type hints to use PEP 604 features: X | Y over Union[X, Y] and X | None over Optional[X].
X | Y
Union[X, Y]
X | None
Optional[X]
Ref #109
The primary change is updating type hints to use PEP 604 features:
X | Y
overUnion[X, Y]
andX | None
overOptional[X]
.Ref #109