Skip to content

Commit

Permalink
Remove unneeded print statements.
Browse files Browse the repository at this point in the history
  • Loading branch information
pydn committed Sep 16, 2024
1 parent e736307 commit ea32a8f
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions comfyui_to_python.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand All @@ -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(
Expand Down

0 comments on commit ea32a8f

Please sign in to comment.