.generator/conftest.py in datadog_api_client-2.24.0 vs .generator/conftest.py in datadog_api_client-2.25.0
- old
+ new
@@ -266,9 +266,11 @@
by_operation = {}
for version, spec in specs.items():
by_operation[version] = {}
for path in spec["paths"]:
+ if path.startswith("x-"):
+ continue
for method, operation in spec["paths"][path].items():
by_operation[version][operation["operationId"]] = openapi.Operation(
operation["operationId"], operation, method, path
)