How to Solve NameError: name 'lru_cache' is not defined -- functools

Solution: Import the 'lru_cache' module

# Add the following line to the top of your code
from functools import lru_cache

 

For more information:
functools lru_cache