In my case this happened because I use
app.py imports utils.py utils.py import app.py
this is stuck in loop so I used
from flask import current_app
so my problem solved.