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():
176
176
capture_output = True ,
177
177
text = True ,
178
178
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
180
180
)
181
181
if result .returncode != 0 :
182
182
if result .stderr :
@@ -210,7 +210,7 @@ def _get_installed_uv_packages():
210
210
text = True ,
211
211
encoding = 'utf-8' ,
212
212
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
214
214
)
215
215
216
216
if result_obj .returncode == 0 :
@@ -253,7 +253,7 @@ def _get_installed_uv_packages():
253
253
capture_output = True ,
254
254
text = True ,
255
255
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
257
257
)
258
258
259
259
if result .returncode != 0 :
@@ -278,9 +278,6 @@ def _get_installed_uv_packages():
278
278
def install_esptool ():
279
279
"""
280
280
Install esptool from package folder "tool-esptoolpy" using uv package manager.
281
-
282
- Returns:
283
- str: Path to esptool executable
284
281
285
282
Raises:
286
283
SystemExit: If esptool installation fails
You can’t perform that action at this time.
0 commit comments