From ea32a8fbbe6c8726815a932b3dbb26de69b93f0a Mon Sep 17 00:00:00 2001 From: pydn <25550995+pydn@users.noreply.github.com> Date: Sun, 15 Sep 2024 19:52:36 -0500 Subject: [PATCH] Remove unneeded print statements. --- comfyui_to_python.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/comfyui_to_python.py b/comfyui_to_python.py index 6e75e40..ec9566e 100644 --- a/comfyui_to_python.py +++ b/comfyui_to_python.py @@ -275,15 +275,6 @@ def generate_workflow( **inputs, ) ) - print( - self.create_function_call_code( - initialized_objects[class_type], - class_def.FUNCTION, - executed_variables[idx], - is_special_function, - **inputs, - ) - ) else: code.append( self.create_function_call_code( @@ -294,15 +285,6 @@ def generate_workflow( **inputs, ) ) - print( - self.create_function_call_code( - initialized_objects[class_type], - class_def.FUNCTION, - executed_variables[idx], - is_special_function, - **inputs, - ) - ) # Generate final code by combining imports and code, and wrap them in a main function final_code = self.assemble_python_code(