We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6a9ff59 commit f492327Copy full SHA for f492327
python_packages/jupyter_lsp/jupyter_lsp/connection.py
@@ -62,7 +62,7 @@ class LspStreamReader(LspStreamBase):
62
help="the maximum size a header line send by the language server may have",
63
).tag(config=True)
64
65
- stream = Instance(
+ stream = Instance( # type:ignore[assignment]
66
BufferedByteReceiveStream, help="the stream to read from"
67
) # type: BufferedByteReceiveStream
68
@@ -206,7 +206,7 @@ async def _readline(self) -> Text:
206
class LspStreamWriter(LspStreamBase):
207
"""Language Server Writer"""
208
209
210
TextSendStream, help="the stream to write to"
211
) # type: TextSendStream
212
0 commit comments