Spaces:
Running
Running
File size: 88 Bytes
48ec4db |
1 2 3 4 5 6 |
import os
async def path_is_valid(path: str) -> bool:
return os.path.exists(path)
|