Skip to content

Commit a9b7d8c

Browse files
authored
correct esptool install doc string
1 parent 0b4f5dd commit a9b7d8c

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

builder/main.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff 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():
278278
def 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

0 commit comments

Comments
 (0)