From ea436423e6a10b5ac087a426a0b3c87e378c71d8 Mon Sep 17 00:00:00 2001 From: Florian Ziemen Date: Thu, 14 Nov 2024 17:37:20 +0100 Subject: [PATCH] run black and isort --- slkspec/core.py | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/slkspec/core.py b/slkspec/core.py index 8d29a2f..4368715 100644 --- a/slkspec/core.py +++ b/slkspec/core.py @@ -121,7 +121,7 @@ def __init__( self.write_through = False self.delay = delay self._file_queue = _file_queue -# print(self._file) + # print(self._file) with _lock: if not Path(self._file).exists() or override: self._file_queue.put((self._url, str(Path(self._file).parent))) @@ -193,23 +193,26 @@ def seek(self, target: int) -> int: # type: ignore self._cache_files() return self._file_obj.seek(target) # type: ignore - def _mkdirs(self, path : Union[str, Path]) -> None: + def _mkdirs(self, path: Union[str, Path]) -> None: rp = os.path.realpath(path) if os.access(rp, os.F_OK): if not os.access(rp, os.W_OK): - raise PermissionError(f"Cannot write to directory, {rp}, needed for downloading data. Probably, you lack access privileges.") + raise PermissionError( + f"Cannot write to directory, {rp}, needed for downloading data. Probably, you lack access privileges." + ) return components = Path(rp).parts[1:] - for i in range (len(components)): - subpath = Path("/", *components[:i+1]) + for i in range(len(components)): + subpath = Path("/", *components[: i + 1]) if not os.access(subpath, os.F_OK): try: os.mkdir(subpath) except PermissionError as e: - raise PermissionError(f"Cannot create or access directory, {e.filename}, needed for downloading data. Probably, you lack access privileges.") + raise PermissionError( + f"Cannot create or access directory, {e.filename}, needed for downloading data." + ) os.chmod(subpath, self.dir_permissions) - @staticmethod def readable() -> Literal[True]: """Compatibility method."""