Skip to content

Commit 6d453a1

Browse files
committed
fixup! Format the python code
1 parent 2154761 commit 6d453a1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

llvm/tools/opt-viewer/optrecord.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,6 +344,8 @@ def find_opt_files(*dirs_or_files):
344344
d for d in subdirs if not os.path.ismount(os.path.join(dir, d))
345345
]
346346
for file in files:
347-
if fnmatch.fnmatch(file, "*.opt.yaml*") or fnmatch.fnmatch(file, "*.opt.ld.yaml*"):
347+
if fnmatch.fnmatch(file, "*.opt.yaml*") or fnmatch.fnmatch(
348+
file, "*.opt.ld.yaml*"
349+
):
348350
all.append(os.path.join(dir, file))
349351
return all

0 commit comments

Comments
 (0)