Skip to content

Commit

Permalink
A round of ruff format after ruff check --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitriPapadopoulos committed Jun 28, 2024
1 parent 080e321 commit 15952e9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion setuptools/tests/test_wheel.py
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ def build_wheel(extra_file_defs=None, **kwargs):
def tree_set(root):
contents = set()
for dirpath, dirnames, filenames in os.walk(root):
contents.update(os.path.join(os.path.relpath(dirpath, root), filename) for filename in filenames)
contents.update(
os.path.join(os.path.relpath(dirpath, root), filename)
for filename in filenames
)
return contents


Expand Down

0 comments on commit 15952e9

Please sign in to comment.