Skip to content

Commit 82ad004

Browse files
authored
Remove unused argument. NFC (#952)
The usage of this argument was removed in #838.
1 parent 060b48f commit 82ad004

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

emsdk.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2479,7 +2479,7 @@ def can_simultaneously_activate(tool1, tool2):
24792479

24802480

24812481
# Expands dependencies for each tool, and removes ones that don't exist.
2482-
def process_tool_list(tools_to_activate, log_errors=True):
2482+
def process_tool_list(tools_to_activate):
24832483
i = 0
24842484
# Gather dependencies for each tool
24852485
while i < len(tools_to_activate):
@@ -2517,7 +2517,7 @@ def write_set_env_script(env_string):
25172517
# and other environment variables.
25182518
# Returns the full list of deduced tools that are now active.
25192519
def set_active_tools(tools_to_activate, permanently_activate, system):
2520-
tools_to_activate = process_tool_list(tools_to_activate, log_errors=True)
2520+
tools_to_activate = process_tool_list(tools_to_activate)
25212521

25222522
if tools_to_activate:
25232523
tools = [x for x in tools_to_activate if not x.is_sdk]
@@ -3147,7 +3147,7 @@ def print_tools(t):
31473147
# Clean up old temp file up front, in case of failure later before we get
31483148
# to write out the new one.
31493149
tools_to_activate = currently_active_tools()
3150-
tools_to_activate = process_tool_list(tools_to_activate, log_errors=True)
3150+
tools_to_activate = process_tool_list(tools_to_activate)
31513151
env_string = construct_env(tools_to_activate, arg_system, arg_permanent)
31523152
if WINDOWS and not BASH:
31533153
write_set_env_script(env_string)

0 commit comments

Comments
 (0)