File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,7 @@ def install_python_deps():
176176 capture_output = True ,
177177 text = True ,
178178 timeout = 30 , # 30 second timeout
179- env = os .environ # Use modified environment with venv Python
179+ env = os .environ # Use current environment with venv Python
180180 )
181181 if result .returncode != 0 :
182182 if result .stderr :
@@ -210,7 +210,7 @@ def _get_installed_uv_packages():
210210 text = True ,
211211 encoding = 'utf-8' ,
212212 timeout = 30 , # 30 second timeout
213- env = os .environ # Use modified environment with venv Python
213+ env = os .environ # Use current environment with venv Python
214214 )
215215
216216 if result_obj .returncode == 0 :
@@ -253,7 +253,7 @@ def _get_installed_uv_packages():
253253 capture_output = True ,
254254 text = True ,
255255 timeout = 30 , # 30 second timeout for package installation
256- env = os .environ # Use modified environment with venv Python
256+ env = os .environ # Use current environment with venv Python
257257 )
258258
259259 if result .returncode != 0 :
@@ -278,9 +278,6 @@ def _get_installed_uv_packages():
278278def install_esptool ():
279279 """
280280 Install esptool from package folder "tool-esptoolpy" using uv package manager.
281-
282- Returns:
283- str: Path to esptool executable
284281
285282 Raises:
286283 SystemExit: If esptool installation fails
You can’t perform that action at this time.
0 commit comments