Skip to content

Commit

Permalink
fix(typing): Path-likes use truediv
Browse files Browse the repository at this point in the history
  • Loading branch information
henryiii committed Aug 5, 2021
1 parent 2678a5e commit 72c11a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion importlib_metadata/_meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class SimplePath(Protocol):
def joinpath(self) -> 'SimplePath':
... # pragma: no cover

def __div__(self) -> 'SimplePath':
def __truediv__(self) -> 'SimplePath':
... # pragma: no cover

def parent(self) -> 'SimplePath':
Expand Down

0 comments on commit 72c11a8

Please sign in to comment.