Skip to content

Commit

Permalink
change arg parse flags filemaker
Browse files Browse the repository at this point in the history
  • Loading branch information
bturkus committed Jan 18, 2024
1 parent 1d8b658 commit b7906f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ami_scripts/filemaker_to_json_validator.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ def convert_dotKeyToNestedDict(tree: dict, key: str, value: str) -> dict:
def main():
# Argument parser setup
parser = argparse.ArgumentParser(description="Convert a FileMaker merge file to JSON files and validate them against JSON schema files")
parser.add_argument("-s", "--source", help="The path to the FileMaker merge file", required=True)
parser.add_argument("-d", "--destination", help="The directory to save the JSON files to", required=True)
parser.add_argument("-i", "--input", help="The path to the input FileMaker merge file", required=True)
parser.add_argument("-o", "--output", help="The output directory to save the JSON files to", required=True)
parser.add_argument("-m", "--metadata", help="Path to the directory of JSON schema files", required=True)
args = parser.parse_args()

Expand Down

0 comments on commit b7906f6

Please sign in to comment.