From 598b28ba3f31039076b068860ce5b87da4121387 Mon Sep 17 00:00:00 2001 From: Abubakar Abid Date: Thu, 16 Dec 2021 10:29:31 -0600 Subject: [PATCH] Update interface.py --- gradio/interface.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/gradio/interface.py b/gradio/interface.py index cd825e5f90..285a9e7e28 100644 --- a/gradio/interface.py +++ b/gradio/interface.py @@ -3,11 +3,6 @@ This is the core file in the `gradio` package, and defines the Interface class, interface using the input and output types. """ -from gradio import networking, strings, utils, encryptor, queue -from gradio.inputs import get_input_instance -from gradio.outputs import get_output_instance -from gradio.interpretation import quantify_difference_in_label, get_regression_or_classification_value -from gradio.external import load_interface import copy import csv import getpass @@ -23,6 +18,11 @@ import time import warnings import webbrowser import weakref +from gradio import networking, strings, utils, encryptor, queue +from gradio.inputs import get_input_instance +from gradio.outputs import get_output_instance +from gradio.interpretation import quantify_difference_in_label, get_regression_or_classification_value +from gradio.external import load_interface ip_address = networking.get_local_ip_address()