GuglielmoTor commited on
Commit
2378b71
·
verified ·
1 Parent(s): 3db4502

Update utils/__init__.py

Browse files
Files changed (1) hide show
  1. utils/__init__.py +0 -5
utils/__init__.py CHANGED
@@ -5,10 +5,6 @@ Initialization file for the custom Python package.
5
  This file makes key functions and classes from the submodules
6
  available at the package level.
7
  """
8
-
9
- # Import from error_handling.py
10
- from .error_handling import display_error
11
-
12
  # Import from gradio_utils.py
13
  from .gradio_utils import get_url_user_token
14
 
@@ -17,6 +13,5 @@ from .gradio_utils import get_url_user_token
17
  # what symbols are exported when `from <package_name> import *` is used.
18
  # This is good practice for larger packages.
19
  __all__ = [
20
- 'display_error',
21
  'get_url_user_token'
22
  ]
 
5
  This file makes key functions and classes from the submodules
6
  available at the package level.
7
  """
 
 
 
 
8
  # Import from gradio_utils.py
9
  from .gradio_utils import get_url_user_token
10
 
 
13
  # what symbols are exported when `from <package_name> import *` is used.
14
  # This is good practice for larger packages.
15
  __all__ = [
 
16
  'get_url_user_token'
17
  ]