Python Typing Union

Union[Union[int, str], float] == Union[int, str, float]
Elated Eel