Skip to content

Commit

Permalink
Remove cast of path items to strings. Ref #372.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Mar 12, 2022
1 parent 14cce75 commit ee566d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion importlib_metadata/__init__.py
Expand Up @@ -772,7 +772,7 @@ def __new__(cls, root):
return super().__new__(cls)

def __init__(self, root):
self.root = str(root)
self.root = root

def joinpath(self, child):
return pathlib.Path(self.root, child)
Expand Down

0 comments on commit ee566d0

Please sign in to comment.