Skip to content

Commit 93c89f3

Browse files
committed
fix: typo error
1 parent 9afdded commit 93c89f3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/aleph/services/storage/fileystem_engine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ async def delete(self, filename: str):
3333
file_path = self.folder / filename
3434
async_unlink = aiofiles.ospath.wrap(
3535
Path.unlink
36-
) # We manually warp unlink (not handle by aiofiles)
36+
) # We manually wrap unlink (not handled by aiofiles)
3737

38-
await async_unlink(async_unlink(file_path, missing_ok=True))
38+
await async_unlink(file_path, missing_ok=True)
3939

4040
async def exists(self, filename: str) -> bool:
4141
file_path = self.folder / filename

0 commit comments

Comments
 (0)