Skip to content

Commit

Permalink
[FIX] Circular import
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Jan 24, 2025
1 parent 0c4545d commit ff7deda
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@
from app.flask_dropzone import Dropzone
from app.iris_engine.tasker.celery import make_celery
from app.iris_engine.access_control.oidc_handler import get_oidc_client
from app.post_init import run_post_init


class ReverseProxied(object):
Expand Down Expand Up @@ -164,6 +163,8 @@ def after_request(response):

register_blusprints(app)

from app.post_init import run_post_init

try:

run_post_init(development=app.config["DEVELOPMENT"])
Expand Down

0 comments on commit ff7deda

Please sign in to comment.