Cleanup code

This commit is contained in:
Anton Stubenbord
2023-02-06 17:43:09 +01:00
parent fd40ccb1d3
commit 9620c7d859
2 changed files with 3 additions and 1 deletions

View File

@@ -94,7 +94,8 @@ class FileService {
}
await Future.wait(
dir.listSync().map((item) => item.delete(recursive: true)));
dir.listSync().map((item) => item.delete(recursive: true)),
);
}
}