Skip to content

Commit

Permalink
Fix last usage of builtins as variable names
Browse files Browse the repository at this point in the history
  • Loading branch information
jrha committed Jul 29, 2024
1 parent c5ecc6e commit 17ad05f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions mrepo.py
Original file line number Diff line number Diff line change
Expand Up @@ -863,9 +863,9 @@ def remove(filename):
remove(name)


def removedir(_, dir, files):
for file in files:
remove(path_join(dir, file))
def removedir(_, directory, files):
for filename in files:
remove(path_join(directory, filename))


def mkdir(path):
Expand Down

0 comments on commit 17ad05f

Please sign in to comment.