From 88474f89d971b80d328399e03482dc2519982117 Mon Sep 17 00:00:00 2001 From: Ali Abid Date: Mon, 21 Dec 2020 07:59:53 -0800 Subject: [PATCH] remove print statement --- gradio/interface.py | 1 - 1 file changed, 1 deletion(-) diff --git a/gradio/interface.py b/gradio/interface.py index b0911848fd..9e6252df75 100644 --- a/gradio/interface.py +++ b/gradio/interface.py @@ -212,7 +212,6 @@ class Interface: outputs_per_function = int(len(self.output_interfaces) / len(self.predict)) function_index = i // outputs_per_function component_index = i - function_index * outputs_per_function - print(outputs_per_function, function_index, component_index) ret_name = "Output " + str(component_index + 1) if outputs_per_function > 1 else "Output" if not iface[1]["label"]: iface[1]["label"] = ret_name