File tree 5 files changed +7
-3
lines changed
5 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -175,8 +175,8 @@ def escape_plain_text(contents: str) -> str:
175
175
"""
176
176
Format plain text to display nicely in environments which do not respect whitespaces.
177
177
"""
178
- contents = contents .replace ("\t " , "\u00A0 " * 4 )
179
- contents = contents .replace (" " , "\u00A0 " * 2 )
178
+ contents = contents .replace ("\t " , "\u00a0 " * 4 )
179
+ contents = contents .replace (" " , "\u00a0 " * 2 )
180
180
return contents
181
181
182
182
Original file line number Diff line number Diff line change 2
2
# Copyright 2021- Python Language Server Contributors.
3
3
4
4
"""Linter pluging for flake8"""
5
+
5
6
import logging
6
7
import os .path
7
8
import re
Original file line number Diff line number Diff line change 3
3
# Copyright 2021- Python Language Server Contributors.
4
4
5
5
"""Linter plugin for pylint."""
6
+
6
7
import collections
7
8
import logging
8
9
import os
Original file line number Diff line number Diff line change 5
5
6
6
https://github.com/Microsoft/vscode-uri/blob/e59cab84f5df6265aed18ae5f43552d3eef13bb9/lib/index.ts
7
7
"""
8
+
8
9
import re
9
10
from urllib import parse
10
11
Original file line number Diff line number Diff line change 1
1
# Copyright 2017-2020 Palantir Technologies, Inc.
2
2
# Copyright 2021- Python Language Server Contributors.
3
3
4
- """ py.test configuration"""
4
+ """pytest configuration"""
5
+
5
6
import logging
6
7
7
8
from pylsp .__main__ import LOG_FORMAT
You can’t perform that action at this time.
0 commit comments