From 0d93fef2791eb45299af5e2fb5504e0093e6c350 Mon Sep 17 00:00:00 2001 From: 2underscores Date: Thu, 5 Jun 2025 22:19:36 +1000 Subject: [PATCH] rm debug logs --- src/mcpo/utils/main.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/mcpo/utils/main.py b/src/mcpo/utils/main.py index 2baf5bb..06d1886 100644 --- a/src/mcpo/utils/main.py +++ b/src/mcpo/utils/main.py @@ -226,10 +226,8 @@ def get_model_fields(form_model_name, properties, required_fields, schema_defs=N # Handle parameter names with leading underscores (e.g., __top, __filter) which Pydantic v2 does not allow if name_needs_alias(param_name): - print(f"DEBUG: Handling underscore parameter: {param_name}") other_names = set().union(properties, model_fields, _model_cache) alias_name = generate_alias_name(param_name, other_names) - print(f"DEBUG: Clean name for {param_name} is {alias_name}") aliased_field = Field( default=pydantic_field_info.default, description=pydantic_field_info.description,