stefan155 commited on
Commit
7a95fec
·
verified ·
1 Parent(s): 8b1cd02

hugging face does not have write permissons, fix for it to work

Browse files
Files changed (1) hide show
  1. app/routes.py +0 -2
app/routes.py CHANGED
@@ -57,8 +57,6 @@ def getLatestStatistics(symbol):
57
  merged_df = pd.concat([current_data, dataframe], ignore_index=True)
58
  updated_df = merged_df.drop_duplicates(keep='first')
59
 
60
- updated_df.to_csv('app/data-formatted.csv', index=False)
61
-
62
  return updated_df
63
 
64
 
 
57
  merged_df = pd.concat([current_data, dataframe], ignore_index=True)
58
  updated_df = merged_df.drop_duplicates(keep='first')
59
 
 
 
60
  return updated_df
61
 
62