How to Solve NameError: name 'signature' is not defined -- inspect

Solution: Import the 'signature' module

# Add the following line to the top of your code
from inspect import signature

 

For more information:
inspect signature