fix(app): add author for spaces
Browse files
app.py
CHANGED
@@ -171,7 +171,7 @@ if __name__ == '__main__':
|
|
171 |
"[![Original Repo](https://badgen.net/badge/icon/github?icon=github&label=Original%20Repo)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)"
|
172 |
)
|
173 |
with gr.Tabs():
|
174 |
-
for (name, title, cover, vc_fn) in models:
|
175 |
with gr.TabItem(name):
|
176 |
with gr.Row():
|
177 |
gr.Markdown(
|
|
|
171 |
"[![Original Repo](https://badgen.net/badge/icon/github?icon=github&label=Original%20Repo)](https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI)"
|
172 |
)
|
173 |
with gr.Tabs():
|
174 |
+
for (name, title, author, cover, vc_fn) in models:
|
175 |
with gr.TabItem(name):
|
176 |
with gr.Row():
|
177 |
gr.Markdown(
|