Skip to content

Commit

Permalink
Make sure apps_manifest path is not None
Browse files Browse the repository at this point in the history
  • Loading branch information
boosterl committed Jan 18, 2024
1 parent fdfb7c8 commit f9816af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elody/loader.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def load_apps(flask_app, logger):


def load_policies(policy_factory, logger):
apps = util.read_json_as_dict(os.getenv("APPS_MANIFEST"), logger)
apps = util.read_json_as_dict(os.getenv("APPS_MANIFEST", ""), logger)
for app in apps:
try:
auth_type = "authentication"
Expand Down

0 comments on commit f9816af

Please sign in to comment.