Skip to content

Commit cd3de72

Browse files
authoredFeb 25, 2025
Update Create_Python3.10_VirtualEnv_.venv.py
1 parent 287b7c4 commit cd3de72

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

‎Create_Python3.10_VirtualEnv_.venv.py

-2
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,7 @@ def update_environment_variable(variable_name, new_value, scope):
3232
with winreg.OpenKey(scope, r'SYSTEM\CurrentControlSet\Control\Session Manager\Environment', 0, winreg.KEY_ALL_ACCESS) as key:
3333
value, regtype = winreg.QueryValueEx(key, variable_name)
3434
value_list = value.split(os.pathsep)
35-
# Remove any existing instances of the new value
3635
value_list = [v for v in value_list if v != new_value]
37-
# Add the new value to the top
3836
value_list.insert(0, new_value)
3937
new_value_str = os.pathsep.join(value_list)
4038
winreg.SetValueEx(key, variable_name, 0, regtype, new_value_str)

0 commit comments

Comments
 (0)
Please sign in to comment.