There was an error while loading. Please reload this page.
1 parent aef1ee9 commit 3745221Copy full SHA for 3745221
src/google/adk/tools/openapi_tool/openapi_spec_parser/operation_parser.py
@@ -164,8 +164,8 @@ def _dedupe_param_names(self):
164
def _process_return_value(self) -> Parameter:
165
"""Returns a Parameter object representing the return type."""
166
responses = self._operation.responses or {}
167
- # Default to Any if no 2xx response or if schema is missing
168
- return_schema = Schema(type='Any')
+ # Default to empty schema if no 2xx response or if schema is missing
+ return_schema = Schema()
169
170
# Take the 20x response with the smallest response code.
171
valid_codes = list(
0 commit comments