Skip to content

Commit

Permalink
Fix spurious async
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed Mar 25, 2024
1 parent 2e6a5ed commit f4b82e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jupyter_client/provisioning/local_provisioner.py
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ async def launch_kernel(self, cmd: List[str], **kwargs: Any) -> KernelConnection
self.cwd = kwargs.get("cwd", pathlib.Path.cwd())
return self.connection_info

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

0 comments on commit f4b82e5

Please sign in to comment.