Skip to content

Commit a83e41f

Browse files
committed
ruff
1 parent dfb823c commit a83e41f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tools/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def normalize_relative_environment_variables():
8585
# normalize the path directives to current environment here, so that any
8686
# sub-tool spawns will see the path to the tool from the parent process.
8787
# However, be careful not to normalize e.g. 'python' or other PATH lookups.
88-
for env_var in {'EMSDK_PYTHON', 'NODE_JS'}:
88+
for env_var in ['EMSDK_PYTHON', 'NODE_JS']:
8989
path = os.environ.get(env_var)
9090
if path and ('\\' in path or '/' in path):
9191
os.environ[env_var] = os.path.abspath(os.environ[env_var])

0 commit comments

Comments
 (0)