Skip to content

Commit

Permalink
Use keyword argument for with_pip argument (#913)
Browse files Browse the repository at this point in the history
Co-authored-by: Paul Horn <paul.horn@neotechnology.com>
  • Loading branch information
s1ck and knutwalker authored Mar 19, 2024
1 parent d75ac33 commit 381ff2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/snowflake/cli/plugins/snowpark/venv.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def pip_download(self, requirements_files, download_dir):
return process.returncode

def _create_venv(self):
venv.create(self.directory.name, self.with_pip)
venv.create(self.directory.name, with_pip=self.with_pip)

@staticmethod
def _get_python_path(venv_dir: Path) -> Path:
Expand Down

0 comments on commit 381ff2a

Please sign in to comment.