I have two files app.py and mod_login.py
app.py
mod_login.py
from flask import Flask from mod_login import mod_login app = Flask(__name
When this is in a python console if you update a module to be able to use it through the console does not help reset, you must use a
import importlib
and
importlib.reload (*module*)
likely to solve your problem