Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -219,4 +219,10 @@ def run_and_submit_all(profile: gr.OAuthProfile | None):
|
|
219 |
return final_status, pd.DataFrame(results_log)
|
220 |
except Exception as e:
|
221 |
print(f"Submission failed: {e}")
|
222 |
-
return f"Submission failed: {e}", pd.DataFrame(results_log)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
return final_status, pd.DataFrame(results_log)
|
220 |
except Exception as e:
|
221 |
print(f"Submission failed: {e}")
|
222 |
+
return f"Submission failed: {e}", pd.DataFrame(results_log)
|
223 |
+
if __name__ == "__main__":
|
224 |
+
print("Launching Gradio Interface...")
|
225 |
+
demo = gr.Blocks()
|
226 |
+
#... (rest of the code remains the same)
|
227 |
+
demo.launch(debug=True, share=False)
|
228 |
+
print("Gradio Interface launched successfully.")
|