From ce0aeb109e817d34b486f6e793196d56fbc88bbf Mon Sep 17 00:00:00 2001 From: comfyanonymous Date: Sat, 11 Feb 2023 03:41:40 -0500 Subject: [PATCH] Remove print. --- comfy/extra_samplers/uni_pc.py | 1 - 1 file changed, 1 deletion(-) diff --git a/comfy/extra_samplers/uni_pc.py b/comfy/extra_samplers/uni_pc.py index 3fe4ef3b..7373cba1 100644 --- a/comfy/extra_samplers/uni_pc.py +++ b/comfy/extra_samplers/uni_pc.py @@ -710,7 +710,6 @@ class UniPC: if method == 'multistep': assert steps >= order # timesteps = self.get_time_steps(skip_type=skip_type, t_T=t_T, t_0=t_0, N=steps, device=device) - print(timesteps) assert timesteps.shape[0] - 1 == steps # with torch.no_grad(): for step_index in trange(steps + 1):