From ccf7b56253915c1544ac90052e48e09249f6500d Mon Sep 17 00:00:00 2001 From: Martin Junghanns Date: Tue, 19 Mar 2024 21:52:37 +0100 Subject: [PATCH] Use keyword argument for with_pip argument (#913) Co-authored-by: Paul Horn --- src/snowflake/cli/plugins/snowpark/venv.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/snowflake/cli/plugins/snowpark/venv.py b/src/snowflake/cli/plugins/snowpark/venv.py index 4e60403c29..fdf2e5725e 100644 --- a/src/snowflake/cli/plugins/snowpark/venv.py +++ b/src/snowflake/cli/plugins/snowpark/venv.py @@ -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):