Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
radishmouse committed Oct 2, 2024
1 parent d175005 commit a69a5a9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/validate_json.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,9 @@ def validate(self):
print('No JSON files to process.')
return 0 # Exit successfully if no JSON files are found

command = ['check-jsonschema', '--schemafile', self.schema_file] + [os.path.join(self.json_dir, f) for f in json_files]
command = ['check-jsonschema', '--schemafile', self.schema_file] + [
os.path.join(self.json_dir, f) for f in json_files
]

try:
subprocess.run(
Expand Down

0 comments on commit a69a5a9

Please sign in to comment.