fix: 继续修复字段错误

This commit is contained in:
amtoaer
2023-12-02 00:51:21 +08:00
parent f174a3b898
commit ec91cbf3ed

View File

@@ -24,7 +24,7 @@ async def aexists(path: Path) -> bool:
async def amakedirs(path: Path, exist_ok=False) -> None:
await makedirs(path, parents=True, exist_ok=exist_ok)
await makedirs(path, exist_ok=exist_ok)
def aopen(