We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e6fe39a commit 2bd6e9eCopy full SHA for 2bd6e9e
1 file changed
bin/docs_scripts/generate_json_schemas.py
@@ -460,6 +460,10 @@ def generate_sdk_documentation():
460
try:
461
documentation = generate_sdk_documentation()
462
463
+ # Ensure output directory exists
464
+ output_dir = str(OUTPUT_CONFIG["output_dir"])
465
+ os.makedirs(output_dir, exist_ok=True)
466
+
467
output_file = os.path.join(
468
str(OUTPUT_CONFIG["output_dir"]), str(OUTPUT_CONFIG["filename"])
469
)
0 commit comments