Skip to content

Commit a3c7919

Browse files
authored
Fix putting extra_paths in front of sys.path (#608)
1 parent 63087dd commit a3c7919

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pylsp/workspace.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,9 @@ def sys_path(
599599
)
600600
path.extend(environment.get_sys_path())
601601
if prioritize_extra_paths:
602-
path += extra_paths + path
602+
path = extra_paths + path
603603
else:
604-
path += path + extra_paths
604+
path = path + extra_paths
605605

606606
return path
607607

0 commit comments

Comments
 (0)