Skip to content

Commit

Permalink
Fixed one occurence of Ruff F541
Browse files Browse the repository at this point in the history
  • Loading branch information
c8y3 committed Jan 31, 2025
1 parent 9b5268e commit 6acbd02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,10 +167,10 @@ def after_request(response):

try:

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

except Exception as e:
app.logger.exception(f"Post init failed. IRIS not started")
app.logger.exception('Post init failed. IRIS not started')
raise e

lm.user_loader(load_user)
Expand Down

0 comments on commit 6acbd02

Please sign in to comment.