Skip to content

Commit f4b82e5

Browse files
committed
Fix spurious async
1 parent 2e6a5ed commit f4b82e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_client/provisioning/local_provisioner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ async def launch_kernel(self, cmd: List[str], **kwargs: Any) -> KernelConnection
223223
self.cwd = kwargs.get("cwd", pathlib.Path.cwd())
224224
return self.connection_info
225225

226-
async def resolve_path(self, path_str: str) -> Optional[str]:
226+
def resolve_path(self, path_str: str) -> Optional[str]:
227227
"""Resolve path to given file."""
228228
path = pathlib.Path(path_str).expanduser()
229229
if not path.is_absolute() and self.cwd:

0 commit comments

Comments
 (0)