How to Type Hint a Decorator in Python
Decorators are a concept that can trip up new Python users. You may find this definition helpful: A decorator is a function that takes in another function and adds new functionality to it without modifying the original function.
Functions can be used just like any other data type in Python. A function can be passed to a function or returned from a functi…


