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 3986b98 commit 1f7b5e0Copy full SHA for 1f7b5e0
py_src/jupyter_lsp/manager.py
@@ -1,7 +1,7 @@
1
""" A configurable frontend for stdio-based Language Servers
2
"""
3
-from typing import Dict, Text, Tuple
4
import traceback
+from typing import Dict, Text, Tuple
5
6
import entrypoints
7
from notebook.transutils import _
py_src/jupyter_lsp/types.py
@@ -207,7 +207,9 @@ def find_node_module(self, *path_frag):
207
208
if found is None: # pragma: no cover
209
self.log.debug(
210
- "{} not found in node_modules of {}".format(pathlib.Path(*path_frag), all_roots)
+ "{} not found in node_modules of {}".format(
211
+ pathlib.Path(*path_frag), all_roots
212
+ )
213
)
214
215
return found
0 commit comments