TIMBOVILL commited on
Commit
ffd2848
1 Parent(s): c5a24fb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -12,6 +12,7 @@ from tabs.report.report import report_tab
12
  from tabs.download.download import download_tab
13
  from tabs.tts.tts import tts_tab
14
  from tabs.settings.presence import presence_tab
 
15
 
16
  from assets.i18n.i18n import I18nAuto
17
 
@@ -51,6 +52,9 @@ with gr.Blocks(theme="ParityError/Interstellar", title="Applio") as Applio:
51
  with gr.Tab(i18n("Report a Bug")):
52
  report_tab()
53
 
 
 
 
54
  # with gr.Tab(i18n("Settings")):
55
  # presence_tab()
56
 
 
12
  from tabs.download.download import download_tab
13
  from tabs.tts.tts import tts_tab
14
  from tabs.settings.presence import presence_tab
15
+ from tabs.info.info import info_tab
16
 
17
  from assets.i18n.i18n import I18nAuto
18
 
 
52
  with gr.Tab(i18n("Report a Bug")):
53
  report_tab()
54
 
55
+ with gr.Tab(i18n("Info")):
56
+ info_tab()
57
+
58
  # with gr.Tab(i18n("Settings")):
59
  # presence_tab()
60