last failing tests
This commit is contained in:
@@ -3252,7 +3252,13 @@ def workout_erase_column_view(request, id=0, column=''):
|
||||
|
||||
row, workout = dataprep.getrowdata(id=w.id)
|
||||
row.df[columnl] = defaultvalue
|
||||
os.remove(w.csvfilename+'.gz')
|
||||
try:
|
||||
os.remove(w.csvfilename+'.gz')
|
||||
except FileNotFoundError:
|
||||
try:
|
||||
os.remove(w.csvfilename)
|
||||
except FileNotFoundError:
|
||||
pass
|
||||
|
||||
row.write_csv(w.csvfilename, gzip=True)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user