I got frustrated on the very first example (Basic 1: Any) because I didn't realize that the typings library wasn't imported by default. Maybe I should have known better, but it definitely got me.
I thought that one was an example where you don't have to do anything.
I just went back to check and I saw that you are supposed to make some changes, which are shown in the solution, even though they are unnecessary to pass the tests.
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)