Spaces:
Runtime error
Runtime error
burtenshaw
commited on
Commit
·
4103657
1
Parent(s):
d34ca77
fix datatype in pandas dataframe
Browse files
app.py
CHANGED
@@ -683,7 +683,7 @@ def fetch_runs_for_ui():
|
|
683 |
}
|
684 |
)
|
685 |
|
686 |
-
return pd.DataFrame(data
|
687 |
|
688 |
except Exception as e:
|
689 |
return pd.DataFrame({"Error": [f"Failed to fetch runs: {str(e)}"]})
|
|
|
683 |
}
|
684 |
)
|
685 |
|
686 |
+
return pd.DataFrame(data)
|
687 |
|
688 |
except Exception as e:
|
689 |
return pd.DataFrame({"Error": [f"Failed to fetch runs: {str(e)}"]})
|