GuglielmoTor commited on
Commit
3db4502
·
verified ·
1 Parent(s): 63b7e8b

Update utils/__init__.py

Browse files
Files changed (1) hide show
  1. utils/__init__.py +1 -5
utils/__init__.py CHANGED
@@ -12,15 +12,11 @@ from .error_handling import display_error
12
  # Import from gradio_utils.py
13
  from .gradio_utils import get_url_user_token
14
 
15
- # Import from sessions.py
16
- from .sessions import create_session, REDIRECT_URI
17
 
18
  # You can also define an __all__ variable to specify
19
  # what symbols are exported when `from <package_name> import *` is used.
20
  # This is good practice for larger packages.
21
  __all__ = [
22
  'display_error',
23
- 'get_url_user_token',
24
- 'create_session',
25
- 'REDIRECT_URI'
26
  ]
 
12
  # Import from gradio_utils.py
13
  from .gradio_utils import get_url_user_token
14
 
 
 
15
 
16
  # You can also define an __all__ variable to specify
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
  ]