Python 3.10 introduces new fancy ways to describe the type of a variable without the need to import typing
like
list_of_string : list[str] = ["hey"]
optional_int_var : int | None = None
Is there a way to describe the wildcard type without importing typing.Any
?