Skip to content

Commit 85eb2e3

Browse files
committed
violate python codestyle
1 parent 0b99df6 commit 85eb2e3

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

llvm/utils/git/code-lint-helper.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,10 +206,8 @@ def run_clang_tidy(changed_files: List[str], args: LintArgs) -> Optional[str]:
206206
proc = subprocess.run(
207207
tidy_diff_cmd,
208208
input=diff_content,
209-
stdout=subprocess.PIPE,
210-
stderr=subprocess.PIPE,
211-
text=True,
212-
check=False,
209+
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
210+
text=True, check=False,
213211
)
214212

215213
return clean_clang_tidy_output(proc.stdout.strip())

0 commit comments

Comments
 (0)