We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
resolved_path
1 parent 7fd409c commit 5befab3Copy full SHA for 5befab3
bundled/tool/lsp_server.py
@@ -737,7 +737,7 @@ def _run_tool_on_document(
737
738
# pygls normalizes the path to lowercase on windows, but we need to resolve the
739
# correct capitalization to avoid https://github.com/pylint-dev/pylint/issues/10137
740
- resolved_path = pathlib.Path(document.path).resolve()
+ resolved_path = str(pathlib.Path(document.path).resolve())
741
742
if use_stdin:
743
argv += ["--from-stdin", resolved_path]
0 commit comments