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 467ec30 commit 140fabeCopy full SHA for 140fabe
.generator/src/generator/openapi.py
@@ -209,6 +209,8 @@ def models(spec):
209
name_to_schema = {}
210
211
for path in spec["paths"]:
212
+ if path == "x-merge-override":
213
+ continue
214
for method in spec["paths"][path]:
215
operation = spec["paths"][path][method]
216
@@ -347,6 +349,8 @@ def apis(spec):
347
349
operations = {}
348
350
351
352
353
354
355
356
tag = operation.get("tags", [None])[0]
0 commit comments