Skip to content

Commit ea32a8f

Browse files
committed
Remove unneeded print statements.
1 parent e736307 commit ea32a8f

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

comfyui_to_python.py

-18
Original file line numberDiff line numberDiff line change
@@ -275,15 +275,6 @@ def generate_workflow(
275275
**inputs,
276276
)
277277
)
278-
print(
279-
self.create_function_call_code(
280-
initialized_objects[class_type],
281-
class_def.FUNCTION,
282-
executed_variables[idx],
283-
is_special_function,
284-
**inputs,
285-
)
286-
)
287278
else:
288279
code.append(
289280
self.create_function_call_code(
@@ -294,15 +285,6 @@ def generate_workflow(
294285
**inputs,
295286
)
296287
)
297-
print(
298-
self.create_function_call_code(
299-
initialized_objects[class_type],
300-
class_def.FUNCTION,
301-
executed_variables[idx],
302-
is_special_function,
303-
**inputs,
304-
)
305-
)
306288

307289
# Generate final code by combining imports and code, and wrap them in a main function
308290
final_code = self.assemble_python_code(

0 commit comments

Comments
 (0)