Any - A special kind of type is Any. A static type checker will treat every type as being compatible with Any and Any as being compatible with every type.
what?
`any` - the builtin function[0] is part of python since the dawn of time
but from what I know is not usable as a type annotation, and `typing.Any` should be used (and imported explicitly)
any - https://docs.python.org/3/library/functions.html#any - Return True if any element of the iterable is true.
Any - A special kind of type is Any. A static type checker will treat every type as being compatible with Any and Any as being compatible with every type.