Skip to content

Commit a316c00

Browse files
authored
fix: append environment paths instead of prepending (#135)
1 parent ab26122 commit a316c00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugin/dev_environment/interfaces.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ def _inject_extra_paths(
4848
*,
4949
settings: DottedDict,
5050
paths: Iterable[str | Path],
51-
operation: Literal["append", "prepend", "replace"] = "prepend",
51+
operation: Literal["append", "prepend", "replace"] = "append",
5252
) -> None:
5353
"""Injects the given `paths` to `XXX.analysis.extraPaths` setting."""
5454
current_paths: list[str] = settings.get(SERVER_SETTING_ANALYSIS_EXTRAPATHS) or []

0 commit comments

Comments
 (0)