Skip to content

Commit

Permalink
aio.core: Fix subproc input type (#2337)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Northey <ryan@synca.io>
  • Loading branch information
phlax authored Oct 11, 2024
1 parent 17cb214 commit b666a8f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion aio.core/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.10.5-dev
0.10.5
3 changes: 2 additions & 1 deletion aio.core/aio/core/subprocess/handler.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

import abc
import logging
import os
import subprocess
from functools import cached_property
from typing import Any, Mapping, Sequence
Expand Down Expand Up @@ -87,7 +88,7 @@ class ASubprocessHandler(

def __init__(
self,
path: str,
path: str | os.PathLike,
*args: str,
encoding: str = "utf-8",
**kwargs) -> None:
Expand Down

0 comments on commit b666a8f

Please sign in to comment.