Skip to content

Commit

Permalink
Update config in extractor_cli.py (#40)
Browse files Browse the repository at this point in the history
The proposed change loads config information from the CONFIGURATION_FILE global, rather than always loading "config.yaml".
  • Loading branch information
turner-anderson authored Feb 14, 2022
1 parent 366862f commit 5fb89d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Community-Supported/clouddb-extractor/extractor_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def _get_int_from_arg(this_str, arg_name, is_required=False):
def main():
"""Command line utility for clouddb_extractor."""
# Load defaults
config = yaml.safe_load(open("config.yml"))
config = yaml.safe_load(open(CONFIGURATION_FILE))

# Define Command Line Args
parser = argparse.ArgumentParser(
Expand Down

0 comments on commit 5fb89d6

Please sign in to comment.