Skip to content

Commit

Permalink
removing unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
briehl committed Dec 13, 2024
1 parent cb4b95a commit cf6c9f3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions staging_service/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,6 @@ def inject_config_dependencies(config):
Path._DATA_DIR = DATA_DIR
Path._META_DIR = META_DIR
Path._CONCIERGE_PATH = CONCIERGE_PATH
_DTS_MANIFEST_SCHEMA_PATH = DTS_MANIFEST_SCHEMA_PATH

if Path._DATA_DIR is None:
raise Exception("Please provide DATA_DIR in the config file ")
Expand All @@ -663,7 +662,7 @@ def inject_config_dependencies(config):
if Path._CONCIERGE_PATH is None:
raise Exception("Please provide CONCIERGE_PATH in the config file ")

if _DTS_MANIFEST_SCHEMA_PATH is None:
if DTS_MANIFEST_SCHEMA_PATH is None:
raise Exception("Please provide DTS_MANIFEST_SCHEMA in the config file")

global _DTS_MANIFEST_VALIDATOR
Expand Down

0 comments on commit cf6c9f3

Please sign in to comment.