Skip to content

Commit

Permalink
Apply black changes
Browse files Browse the repository at this point in the history
  • Loading branch information
bwrsandman authored and github-actions[bot] committed Jan 16, 2024
1 parent 4204063 commit d6c0719
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion post/clang_tidy_review/clang_tidy_review/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,13 @@ def build_clang_tidy_warnings(
start = datetime.datetime.now()
try:
with message_group(f"Running:\n\t{args}"):
subprocess.run(args, capture_output=True, check=True, encoding="utf-8", env={"USER": username})
subprocess.run(
args,
capture_output=True,
check=True,
encoding="utf-8",
env={"USER": username},
)
except subprocess.CalledProcessError as e:
print(
f"\n\nclang-tidy failed with return code {e.returncode} and error:\n{e.stderr}\nOutput was:\n{e.stdout}"
Expand Down

0 comments on commit d6c0719

Please sign in to comment.