From e4eac2e3784ecd43832760e6a6139b809cc51494 Mon Sep 17 00:00:00 2001 From: Khaleel Al-Adhami Date: Fri, 11 Oct 2024 17:08:40 -0700 Subject: [PATCH] remove stray print Co-authored-by: Masen Furer --- reflex/utils/pyi_generator.py | 1 - 1 file changed, 1 deletion(-) diff --git a/reflex/utils/pyi_generator.py b/reflex/utils/pyi_generator.py index 288800233..1df8e6fa0 100644 --- a/reflex/utils/pyi_generator.py +++ b/reflex/utils/pyi_generator.py @@ -428,7 +428,6 @@ def _generate_component_create_functiondef( kwargs.extend(prop_kwargs) def figure_out_return_type(annotation: Any): - print(annotation) if inspect.isclass(annotation) and issubclass(annotation, inspect._empty): return ast.Name(id="Optional[EventType[[]]]") if isinstance(annotation, str) and annotation.startswith("Tuple["):