Skip to content

Commit

Permalink
Merge "IMPR: use Path.cwd() classmethod to get the absolute path inst…
Browse files Browse the repository at this point in the history
…ead resolve()"
  • Loading branch information
jenkins-bot authored and Gerrit Code Review committed Dec 10, 2024
2 parents 56a7065 + 3d3d59f commit 61b7557
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion make_dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ class SetupBase(abc.ABC):

def __post_init__(self) -> None:
"""Post-init initializer."""
self.folder = Path().resolve()
self.folder = Path.cwd()

def clear_old_dist(self) -> None: # pragma: no cover
"""Delete old dist folders.
Expand Down

0 comments on commit 61b7557

Please sign in to comment.