How to Solve NameError: name 'suppress' is not defined -- contextlib

Solution: Import the 'suppress' module

# Add the following line to the top of your code
from contextlib import suppress

 

For more information:
contextlib suppress