Update app.py
Browse files
app.py
CHANGED
|
@@ -10,7 +10,7 @@ def name_to_markdown(name, network):
|
|
| 10 |
def show_template(name, description, authors, url, image_url, more_info=None):
|
| 11 |
if isinstance(authors, str):
|
| 12 |
authors = [authors]
|
| 13 |
-
authors_md = ", ".join([
|
| 14 |
with gr.Box():
|
| 15 |
with gr.Row():
|
| 16 |
with gr.Column(scale=1):
|
|
|
|
| 10 |
def show_template(name, description, authors, url, image_url, more_info=None):
|
| 11 |
if isinstance(authors, str):
|
| 12 |
authors = [authors]
|
| 13 |
+
authors_md = ", ".join([name_to_markdown(author, network) for author, network in authors])
|
| 14 |
with gr.Box():
|
| 15 |
with gr.Row():
|
| 16 |
with gr.Column(scale=1):
|