Private
Public Access
1
0

last failing tests

This commit is contained in:
2024-04-13 11:56:23 +02:00
parent ee0229a43d
commit acf5e401df
2 changed files with 7 additions and 1 deletions

Binary file not shown.

View File

@@ -3252,7 +3252,13 @@ def workout_erase_column_view(request, id=0, column=''):
row, workout = dataprep.getrowdata(id=w.id)
row.df[columnl] = defaultvalue
try:
os.remove(w.csvfilename+'.gz')
except FileNotFoundError:
try:
os.remove(w.csvfilename)
except FileNotFoundError:
pass
row.write_csv(w.csvfilename, gzip=True)