From 3b12e9d38c95d21b83ec2ea735ea6d43a49aa6e6 Mon Sep 17 00:00:00 2001 From: Iustin Pop Date: Sun, 23 Feb 2025 22:45:02 +0100 Subject: [PATCH] Fix the typing hints for Python 3.6+ Thankfully the supported version is 3.7+, so this should be fine. I'm not sure I understand why typing sometimes fails on the CI env, but this should likely fix it. --- posix1e.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/posix1e.pyi b/posix1e.pyi index 716d4a8..32e1bca 100644 --- a/posix1e.pyi +++ b/posix1e.pyi @@ -3,7 +3,7 @@ # NOTE: This dynamically typed stub was automatically generated by stubgen. from typing import Optional, Union, Tuple, TypeVar -from builtins import _PathLike as PathLike +from os import PathLike from typing import overload ACL_DUPLICATE_ERROR: int -- 2.39.5