Commit
•
6e9f0ef
1
Parent(s):
560a0dc
converting path to str
Browse files
app.py
CHANGED
@@ -108,7 +108,7 @@ The only communication between `app` and `main` is the log file.
|
|
108 |
with gr.Blocks() as ui:
|
109 |
with gr.Tab("Application"):
|
110 |
gr.Markdown(intro_md)
|
111 |
-
gr.Image(proj_dir / 'media' / 'reddit_scraper.drawio.png')
|
112 |
gr.Markdown("# Logs")
|
113 |
output = gr.HTML(log_file_to_html_string, every=1)
|
114 |
with gr.Tab("How to Create?"):
|
|
|
108 |
with gr.Blocks() as ui:
|
109 |
with gr.Tab("Application"):
|
110 |
gr.Markdown(intro_md)
|
111 |
+
gr.Image(str(proj_dir / 'media' / 'reddit_scraper.drawio.png'))
|
112 |
gr.Markdown("# Logs")
|
113 |
output = gr.HTML(log_file_to_html_string, every=1)
|
114 |
with gr.Tab("How to Create?"):
|