We are migrating our Flask app from function based views to pluggable views, all working as expected, except the error handlers. I am trying to put all the error handlers in a s
I think you import error_handlers module in routing.py as like
error_handlers
routing.py
import error_handlers
Better you do import like following as in routing.py
from error_handlers import *
It could be help you:-)