Skip to content

Commit 1f7b5e0

Browse files
committed
linting
1 parent 3986b98 commit 1f7b5e0

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

py_src/jupyter_lsp/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
""" A configurable frontend for stdio-based Language Servers
22
"""
3-
from typing import Dict, Text, Tuple
43
import traceback
4+
from typing import Dict, Text, Tuple
55

66
import entrypoints
77
from notebook.transutils import _

py_src/jupyter_lsp/types.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,9 @@ def find_node_module(self, *path_frag):
207207

208208
if found is None: # pragma: no cover
209209
self.log.debug(
210-
"{} not found in node_modules of {}".format(pathlib.Path(*path_frag), all_roots)
210+
"{} not found in node_modules of {}".format(
211+
pathlib.Path(*path_frag), all_roots
212+
)
211213
)
212214

213215
return found

0 commit comments

Comments
 (0)