I was writing a function that can return a string or None.
so if i wanna hint that with '->',
Is this the valid way of doing it
def get_context(arg: str) -> str or None:
...
should I use the
str or Nonehere or theres a better way of hinting?