How to Solve NameError: name 'Blueprint' is not defined -- flask

Solution: Import the 'Blueprint' module

# Add the following line to the top of your code
from flask import Blueprint

 

For more information:
flask Blueprint