Skip to content

Commit efa0402

Browse files
jimmodpgeorge
authored andcommitted
tools/codeformat.py: Fix ruff warnings.
Signed-off-by: Jim Mussared <[email protected]>
1 parent 5cdfe71 commit efa0402

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/codeformat.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def main():
7676
# Filter against the default list of files. This is a little fiddly
7777
# because we need to apply both the inclusion globs given in PATHS
7878
# as well as the EXCLUSIONS, and use absolute paths
79-
files = set(os.path.abspath(f) for f in files)
79+
files = {os.path.abspath(f) for f in files}
8080
all_files = set(list_files(PATHS, EXCLUSIONS, TOP))
8181
if args.v: # In verbose mode, log any files we're skipping
8282
for f in files - all_files:

0 commit comments

Comments
 (0)