Skip to content

Commit

Permalink
fix: Remove missing type parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
KotlinIsland committed Mar 3, 2023
1 parent 499f4f5 commit 8e6ed27
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coverage/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Protocol: # pylint: disable=missing-class-docstring
## File paths

# For arguments that are file paths:
FilePath = Union[str, os.PathLike]
FilePath = Union[str, os.PathLike[str]]
# For testing FilePath arguments
FilePathClasses = [str, pathlib.Path]
FilePathType = Union[Type[str], Type[pathlib.Path]]
Expand Down

0 comments on commit 8e6ed27

Please sign in to comment.