Skip to content

Commit

Permalink
follow pycodestyle readability, E713
Browse files Browse the repository at this point in the history
  • Loading branch information
helylle committed Sep 4, 2024
1 parent 988c8c1 commit 1b65f4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eduid/common/config/parsers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def load_config(
# Looks like there could be a FlaskConfig mixed into the config
config["flask"] = FlaskConfig(**config)

if "celery_config" in config and not "celery" in config:
if "celery_config" in config and "celery" not in config:
config["celery"] = config["celery_config"]

if "app_name" not in config:
Expand Down

0 comments on commit 1b65f4c

Please sign in to comment.