Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -192,7 +192,7 @@ CSS = """
|
|
| 192 |
#footer { text-align: center; color: #9ca3af; font-size: 0.85rem; margin-top: 16px; }
|
| 193 |
"""
|
| 194 |
|
| 195 |
-
with gr.Blocks(
|
| 196 |
|
| 197 |
gr.Markdown("# 🔍 GitHub Repo Analyzer", elem_id="title")
|
| 198 |
gr.Markdown(
|
|
@@ -256,4 +256,4 @@ with gr.Blocks(theme=gr.themes.Soft(primary_hue="violet"), css=CSS, title="GitHu
|
|
| 256 |
|
| 257 |
|
| 258 |
if __name__ == "__main__":
|
| 259 |
-
demo.launch()
|
|
|
|
| 192 |
#footer { text-align: center; color: #9ca3af; font-size: 0.85rem; margin-top: 16px; }
|
| 193 |
"""
|
| 194 |
|
| 195 |
+
with gr.Blocks(title="GitHub Repo Analyzer") as demo:
|
| 196 |
|
| 197 |
gr.Markdown("# 🔍 GitHub Repo Analyzer", elem_id="title")
|
| 198 |
gr.Markdown(
|
|
|
|
| 256 |
|
| 257 |
|
| 258 |
if __name__ == "__main__":
|
| 259 |
+
demo.launch(theme=gr.themes.Soft(primary_hue="violet"), css=CSS)
|