Skip to content

Commit

Permalink
Pacify mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
dunkmann00 committed Apr 29, 2024
1 parent ba78f01 commit f90341c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion delocate/fuse.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ def fuse_trees(
lib_exts : sequence, optional
filename extensions for libraries
"""
for from_dirpath, dirnames, filenames in os.walk(from_tree):
for from_dirpath, dirnames, filenames in os.walk(Path(from_tree)):
to_dirpath = pjoin(to_tree, relpath(from_dirpath, from_tree))
# Copy any missing directories in to_path
for dirname in tuple(dirnames):
Expand Down

0 comments on commit f90341c

Please sign in to comment.