From a69a5a9f5852d5f1e24d72362500b843d8925eed Mon Sep 17 00:00:00 2001 From: Chris Aquino Date: Wed, 2 Oct 2024 14:15:42 -0400 Subject: [PATCH] Formatting --- scripts/validate_json.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/validate_json.py b/scripts/validate_json.py index bfbfdb6..89163b6 100644 --- a/scripts/validate_json.py +++ b/scripts/validate_json.py @@ -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(