Update app.py
Browse files
app.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
| 1 |
import shutil
|
| 2 |
from pathlib import Path
|
| 3 |
|
| 4 |
-
for folder in ["/data/by-language", "/data/
|
| 5 |
p = Path(folder)
|
| 6 |
if p.exists():
|
| 7 |
shutil.rmtree(p)
|
|
|
|
| 1 |
import shutil
|
| 2 |
from pathlib import Path
|
| 3 |
|
| 4 |
+
for folder in ["/data/by-language", "/data/progress_state.json"]:
|
| 5 |
p = Path(folder)
|
| 6 |
if p.exists():
|
| 7 |
shutil.rmtree(p)
|