When I use the autocomplete suggestion in VSCode to make a get_context_data() function:
def get_context_data(self, **kwargs: Any) -> Dict[str, Any]:
return super().get_context_data(**kwargs)
I get a NameError:
NameError: name 'Any' is not defined
I am new to using type hints in Python - do I need to import something for type Any?