Skip to content

Commit 15b622b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent 72844bf commit 15b622b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jupyter_client/manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def client(self, **kwargs: t.Any) -> BlockingKernelClient:
282282
def resolve_path(self, path: str) -> t.Optional[str]:
283283
"""Resolve path to given file."""
284284
assert self.provisioner is not None
285-
print('kernel manager resolving path!', path, 'to', self.provisioner.resolve_path(path))
285+
print("kernel manager resolving path!", path, "to", self.provisioner.resolve_path(path))
286286
return self.provisioner.resolve_path(path)
287287

288288
def update_env(self, *, env: t.Dict[str, str]) -> None:

jupyter_client/provisioning/local_provisioner.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ async def launch_kernel(self, cmd: List[str], **kwargs: Any) -> KernelConnection
219219

220220
self.pid = self.process.pid
221221
self.pgid = pgid
222-
self.cwd = kwargs.get('cwd', pathlib.Path.cwd())
222+
self.cwd = kwargs.get("cwd", pathlib.Path.cwd())
223223
return self.connection_info
224224

225225
async def resolve_path(self, path_str: str) -> Optional[str]:

0 commit comments

Comments
 (0)