Skip to content

Commit 15952e9

Browse files
A round of ruff format after ruff check --fix
1 parent 080e321 commit 15952e9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setuptools/tests/test_wheel.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,10 @@ def build_wheel(extra_file_defs=None, **kwargs):
114114
def tree_set(root):
115115
contents = set()
116116
for dirpath, dirnames, filenames in os.walk(root):
117-
contents.update(os.path.join(os.path.relpath(dirpath, root), filename) for filename in filenames)
117+
contents.update(
118+
os.path.join(os.path.relpath(dirpath, root), filename)
119+
for filename in filenames
120+
)
118121
return contents
119122

120123

0 commit comments

Comments
 (0)