pathlib: missing type annotation for fnmatch_ex

This commit is contained in:
Ran Benita 2020-12-19 14:51:23 +02:00
parent 170a2c5040
commit a218413008
1 changed files with 1 additions and 1 deletions

View File

@ -387,7 +387,7 @@ def resolve_from_str(input: str, rootpath: Path) -> Path:
return rootpath.joinpath(input)
def fnmatch_ex(pattern: str, path) -> bool:
def fnmatch_ex(pattern: str, path: Union[str, "os.PathLike[str]"]) -> bool:
"""A port of FNMatcher from py.path.common which works with PurePath() instances.
The difference between this algorithm and PurePath.match() is that the