Skip to content

Commit

Permalink
Consistent API change
Browse files Browse the repository at this point in the history
  • Loading branch information
matteius committed Jan 22, 2024
1 parent 1b133bb commit a0d19f8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pipenv/vendor/pythonfinder/pythonfinder.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

@dataclasses.dataclass(unsafe_hash=True)
class Finder:
path_prepend: str | None = None
path: str | None = None
system: bool = False
global_search: bool = True
ignore_unsupported: bool = True
Expand All @@ -28,7 +28,7 @@ def create_system_path(self) -> SystemPath:
set_asdf_paths()
set_pyenv_paths()
return SystemPath.create(
path=self.path_prepend,
path=self.path,
system=self.system,
global_search=self.global_search,
ignore_unsupported=self.ignore_unsupported,
Expand Down

0 comments on commit a0d19f8

Please sign in to comment.