hvl_ccb.utils.typing

Additional Python typing module utilities

ConvertableTypes

Typing hint for data type that can be used in conversion

alias of int | float | list[int | float] | tuple[int | float, …] | dict[str, int | float] | ndarray[Any, dtype[_ScalarType_co]]

Number

Typing hint auxiliary for a Python base number types: int or float.

alias of int | float