Next commited on
Commit
ce0fc13
1 Parent(s): b337203

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -1
app.py CHANGED
@@ -8,9 +8,15 @@ os.makedirs("ytdl", exist_ok=True)
8
 
9
 
10
  # applio theme imports
 
 
 
 
 
 
11
  from gradio.themes.base import Base
12
  from gradio.themes.utils import colors, fonts, sizes
13
-
14
 
15
 
16
 
 
8
 
9
 
10
  # applio theme imports
11
+ from __future__ import annotations
12
+
13
+ from typing import Iterable
14
+ import gradio as gr
15
+
16
+ # gr.themes.builder()
17
  from gradio.themes.base import Base
18
  from gradio.themes.utils import colors, fonts, sizes
19
+ import time
20
 
21
 
22