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
2 people authored and sfc-gh-pczajka committed Mar 27, 2024
1 parent 96347c1 commit ccf7b56
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 @@ -45,7 +45,7 @@ def pip_install(self, name: str, req_type: str, directory: str = ".packages"):
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):
Expand Down

0 comments on commit ccf7b56

Please sign in to comment.