Skip to content

Commit

Permalink
Replace call to project.s.initialize
Browse files Browse the repository at this point in the history
  • Loading branch information
oz123 committed Aug 8, 2022
1 parent 36f9021 commit c0ac20f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def load_dot_env(project, as_dict=False, quiet=False):
err=True,
)
dotenv.load_dotenv(dotenv_file, override=True)
project.s.initialize()
project.s()


def cleanup_virtualenv(project, bare=True):
Expand Down
2 changes: 1 addition & 1 deletion pipenv/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def __init__(self, python_version=None, chdir=True):
self._environment = None
self._build_system = {"requires": ["setuptools", "wheel"]}
self.python_version = python_version
self.s = Setting()
self.s = Setting
if self.s.PIPENV_TEST_INDEX:
self.default_source = {
"url": self.s.PIPENV_TEST_INDEX,
Expand Down

0 comments on commit c0ac20f

Please sign in to comment.