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

Solution: Import the 'current_app' module

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

 

For more information:
flask current_app