File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11# Copyright 2017 Palantir Technologies, Inc.
22import argparse
3- import json
43import logging
54import logging .config
65import 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 )
811
912LOG_FORMAT = "%(asctime)s UTC - %(levelname)s - %(name)s - %(message)s"
1013
Original file line number Diff line number Diff line change 11# Copyright 2018 Google LLC.
22"""Linter plugin for pylint."""
33import collections
4- import json
54import logging
65import sys
76
7+ import ujson as json
88from pylint .epylint import py_run
99from pyls import hookimpl , lsp
1010
11-
1211log = logging .getLogger (__name__ )
1312
1413
Original file line number Diff line number Diff line change 3737 'backports.functools_lru_cache; python_version<"3.2"' ,
3838 'jedi>=0.14.1,<0.16' ,
3939 'python-jsonrpc-server>=0.1.0' ,
40- 'pluggy'
40+ 'pluggy' ,
41+ 'ujson<=1.35'
4142 ],
4243
4344 # List additional groups of dependencies here (e.g. development
You can’t perform that action at this time.
0 commit comments