Skip to content

Commit

Permalink
Add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtomlinson committed Aug 1, 2024
1 parent a96adab commit b68f279
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion kr8s/_types.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@

_KT = TypeVar("_KT")
_VT_co = TypeVar("_VT_co", covariant=True)
PathType = Union[str, "PathLike[str]"]
PathType = Union[
str,
"PathLike[str]", # Can remove quotes when Python 3.9 is the minimum version.
]

if TYPE_CHECKING:
from ._objects import Pod
Expand Down

0 comments on commit b68f279

Please sign in to comment.