Skip to content

Commit 53eca65

Browse files
Fix formatting issues in generate_component_manifest_files.py
- Fixed whitespace formatting to comply with Ruff format check - Added proper blank line after import statement - Removed trailing whitespace Co-Authored-By: AJ Steers <[email protected]>
1 parent 2c7bb73 commit 53eca65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

bin/generate_component_manifest_files.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,9 @@ def default(self, obj):
4646
return super().default(obj)
4747

4848
import os
49+
4950
os.makedirs(os.path.dirname(json_file_path), exist_ok=True)
50-
51+
5152
with open(json_file_path, "w") as json_file:
5253
json.dump(schema_data, json_file, indent=2, cls=DateTimeEncoder)
5354

0 commit comments

Comments
 (0)