Skip to content

Commit

Permalink
glob -> glob.glob
Browse files Browse the repository at this point in the history
  • Loading branch information
bnb32 committed May 1, 2024
1 parent de0b941 commit ad43906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sup3r/utilities/utilities.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def expand_paths(fps):

out = []
for f in fps:
out.extend(glob(f))
out.extend(glob.glob(f))
return sorted(set(out))


Expand Down

0 comments on commit ad43906

Please sign in to comment.