File tree 3 files changed +8
-5
lines changed
3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Copyright 2017 Palantir Technologies, Inc.
2
2
import argparse
3
- import json
4
3
import logging
5
4
import logging .config
6
5
import sys
7
- from .python_ls import start_io_lang_server , start_tcp_lang_server , PythonLanguageServer
6
+
7
+ import ujson as json
8
+
9
+ from .python_ls import (PythonLanguageServer , start_io_lang_server ,
10
+ start_tcp_lang_server )
8
11
9
12
LOG_FORMAT = "%(asctime)s UTC - %(levelname)s - %(name)s - %(message)s"
10
13
Original file line number Diff line number Diff line change 1
1
# Copyright 2018 Google LLC.
2
2
"""Linter plugin for pylint."""
3
3
import collections
4
- import json
5
4
import logging
6
5
import sys
7
6
7
+ import ujson as json
8
8
from pylint .epylint import py_run
9
9
from pyls import hookimpl , lsp
10
10
11
-
12
11
log = logging .getLogger (__name__ )
13
12
14
13
Original file line number Diff line number Diff line change 37
37
'backports.functools_lru_cache; python_version<"3.2"' ,
38
38
'jedi>=0.14.1,<0.16' ,
39
39
'python-jsonrpc-server>=0.1.0' ,
40
- 'pluggy'
40
+ 'pluggy' ,
41
+ 'ujson<=1.35'
41
42
],
42
43
43
44
# List additional groups of dependencies here (e.g. development
You can’t perform that action at this time.
0 commit comments