I am trying to use type hints to say an object can be of type str or bytes. Then from my understanding, it seems reasonable to alias Union[str, bytes]. However,
Union[str, bytes]