Skip to content

Commit eec1388

Browse files
committed
fix linter issues
1 parent 1c699f7 commit eec1388

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

pylsp_jsonrpc/streams.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,9 @@ def __init__(self, wfile, **json_dumps_args):
8686
self._wfile_lock = threading.Lock()
8787

8888
if 'orjson' in sys.modules and json_dumps_args.pop('sort_keys'):
89-
# orjson needs different option handling
90-
self._json_dumps_args = {'option': json.OPT_SORT_KEYS}
89+
# orjson needs different option handling;
90+
# pylint has an erroneous error here https://github.com/pylint-dev/pylint/issues/9762
91+
self._json_dumps_args = {'option': json.OPT_SORT_KEYS} # pylint: disable=maybe-no-member
9192
self._json_dumps_args.update(**json_dumps_args)
9293
else:
9394
self._json_dumps_args = json_dumps_args

test/test_streams.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
import datetime
88
import sys
99
from unittest import mock
10-
import pytest
1110
import json
11+
import pytest
1212

1313
from pylsp_jsonrpc.streams import JsonRpcStreamReader, JsonRpcStreamWriter
1414

0 commit comments

Comments
 (0)