Skip to content

Commit

Permalink
fix: returned campaign.schema.json file to normal
Browse files Browse the repository at this point in the history
  • Loading branch information
khalsz committed Sep 20, 2024
1 parent c979b1c commit 51f99a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion validate_camel_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def val_json_file(json_file):
is_valid, message = validate_camel_case(data)
if not is_valid:
# append result of json file with non cameCase keys
print(f"{json_file} - {message}")
print(f"json file: {json_file} contains {message}")
sys.exit(1)
else:
return(f"json file: {json_file} contains valid camelCase keys")
Expand Down

0 comments on commit 51f99a7

Please sign in to comment.