From 2b0a138561b0a04c6d34e15fee00b2c6c3fe4a38 Mon Sep 17 00:00:00 2001 From: Andrew Snare Date: Thu, 7 Nov 2024 17:56:43 +0100 Subject: [PATCH] Fix pylint issues. --- src/databricks/labs/blueprint/paths.py | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/src/databricks/labs/blueprint/paths.py b/src/databricks/labs/blueprint/paths.py index a794c3e..1aaaeb8 100644 --- a/src/databricks/labs/blueprint/paths.py +++ b/src/databricks/labs/blueprint/paths.py @@ -138,7 +138,6 @@ def __new__(cls, *args, **kwargs): # Force all initialisation to go via __init__() irrespective of the (Python-specific) base version. return object.__new__(cls) - # pylint: disable=super-init-not-called def __init__(self, ws: WorkspaceClient, *args: str | bytes | os.PathLike) -> None: # We deliberately do _not_ call the super initializer because we're taking over complete responsibility for the # implementation of the public API. @@ -386,7 +385,6 @@ def with_suffix(self: P, suffix: str) -> P: raise ValueError(msg) return self.with_name(stem + suffix) - # pylint: disable=arguments-differ def relative_to(self: P, *other: str | bytes | os.PathLike, walk_up: bool = False) -> P: normalized = self.with_segments(*other) if self.anchor != normalized.anchor: @@ -528,13 +526,14 @@ def _normalize(self: P) -> P: return self segments: list[str] = [] for part in self._path_parts: - if part == "..": - if segments: - segments.pop() - elif part is None or part == '.': - continue - else: - segments.append(part) + match part: + case "..": + if segments: + segments.pop() + case None | ".": + pass + case _: + segments.append(part) # pylint: disable=protected-access return self.with_segments(self.anchor, *segments)._normalize()