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 435640f commit 64120b9Copy full SHA for 64120b9
.generator/src/generator/openapi.py
@@ -219,6 +219,8 @@ def models(spec):
219
name_to_schema = {}
220
221
for path in spec["paths"]:
222
+ if path == "x-merge-override":
223
+ continue
224
for method in spec["paths"][path]:
225
operation = spec["paths"][path][method]
226
@@ -288,6 +290,8 @@ def apis(spec):
288
290
operations = {}
289
291
292
293
294
295
296
297
tag = operation.get("tags", [None])[0]
0 commit comments