from typing import (
    Union,
)

Numeric = Union[int, float]
