Skip to content

Commit

Permalink
feat: add ENV variable for csv separator
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonKonar committed Jan 12, 2024
1 parent 356bf26 commit 2a98b0c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions util/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
SAMPLE_COLLECTIONS_PATH = os.getenv("SAMPLE_COLLECTIONS_PATH", os.path.join(ROOT_DIR, 'default_sample_collection.json'))
TYPE_TO_COLLECTION_MAP_PATH = os.getenv("TYPE_TO_COLLECTION_MAP_PATH",
os.path.join(ROOT_DIR, 'default_type_to_collection_map.json'))
CSV_SEPARATOR = os.getenv("CSV_SEPARATOR", ";")
BLAZE_AUTH: tuple = (os.getenv("BLAZE_USER", ""), os.getenv("BLAZE_PASS", ""))
with open(PARSING_MAP_PATH) as json_file:
try:
Expand Down

0 comments on commit 2a98b0c

Please sign in to comment.