Skip to content

Commit

Permalink
🐛 fix pathlike generic (fix #77)
Browse files Browse the repository at this point in the history
  • Loading branch information
yanyongyu authored Apr 14, 2023
1 parent 02838ae commit 5230d69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nb_cli/handlers/process.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ async def wait_for_finish():

@ensure_process_terminated
async def create_process(
*args: Union[str, bytes, os.PathLike[str], os.PathLike[bytes]],
*args: Union[str, bytes, "os.PathLike[str]", "os.PathLike[bytes]"],
cwd: Optional[Path] = None,
stdin: Optional[Union[IO[Any], int]] = None,
stdout: Optional[Union[IO[Any], int]] = None,
Expand Down

0 comments on commit 5230d69

Please sign in to comment.