We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cdfe71 commit efa0402Copy full SHA for efa0402
tools/codeformat.py
@@ -76,7 +76,7 @@ def main():
76
# Filter against the default list of files. This is a little fiddly
77
# because we need to apply both the inclusion globs given in PATHS
78
# as well as the EXCLUSIONS, and use absolute paths
79
- files = set(os.path.abspath(f) for f in files)
+ files = {os.path.abspath(f) for f in files}
80
all_files = set(list_files(PATHS, EXCLUSIONS, TOP))
81
if args.v: # In verbose mode, log any files we're skipping
82
for f in files - all_files:
0 commit comments