We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81c5e9f commit 18e0f14Copy full SHA for 18e0f14
api/specs/web-server/openapi.py
@@ -99,6 +99,7 @@ def main():
99
# .yaml
100
oas_path = webserver_resources.get_path("api/v0/openapi.yaml").resolve()
101
if not oas_path.exists():
102
+ oas_path.parent.mkdir(parents=True)
103
oas_path.write_text("")
104
print(f"Writing {oas_path}...", end=None)
105
with oas_path.open("wt") as fh:
0 commit comments