burtenshaw commited on
Commit
4103657
·
1 Parent(s): d34ca77

fix datatype in pandas dataframe

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -683,7 +683,7 @@ def fetch_runs_for_ui():
683
  }
684
  )
685
 
686
- return pd.DataFrame(data, datatype="markdown")
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)}"]})