We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0508463 commit 68998b2Copy full SHA for 68998b2
pylsp/workspace.py
@@ -599,9 +599,9 @@ def sys_path(
599
)
600
path.extend(environment.get_sys_path())
601
if prioritize_extra_paths:
602
- path += extra_paths + path
+ path = extra_paths + path
603
else:
604
- path += path + extra_paths
+ path = path + extra_paths
605
606
return path
607
0 commit comments