Only for unified API and do nothing.
(uri: str)
| 322 | |
| 323 | @contextlib.contextmanager |
| 324 | def as_local_path(uri: str) -> Generator[Union[str, Path], None, None]: |
| 325 | """Only for unified API and do nothing.""" |
| 326 | storage = File._get_storage(uri) |
| 327 | with storage.as_local_path(uri) as local_path: |
| 328 | yield local_path |