I got an error message that sent me here https://flask.palletsprojects.com/en/stable/appcontext/
and I'm not sure where to put that
def create_app():
app = Flask(__name__)
with app.app_context():
init_db()
return app
code snippet that it sounds like I need to avoid this error
(that I still don't understand because reading the page just says "hey we do this so we don't get recursive issues" but I don't understand this kind of vague statement without an example to compare it to.)
https://paste.pythondiscord.com/3SRQ traceback here