def foo(
hello: str='world', bar: str=None,
another_string_or_None: str|????=None):
pass
I'm trying to set a type hint in Python in a function, you can add more than one type hint with something: str|bool='default value', but, what are the type hinting for None? :/