Skip to content

Commit d395cc2

Browse files
committed
clang-tidy-diff: Fix formatting
Signed-off-by: Remi Gacogne <remi.gacogne@powerdns.com>
1 parent 6653beb commit d395cc2

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/scripts/clang-tidy-diff.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,12 +227,10 @@ def main():
227227
# A lock for console output.
228228
lock = threading.Lock()
229229

230-
# List of files with a non-zero return code.
230+
# List of files with a non-zero return code.
231231
failed_files = []
232232
# Run a pool of clang-tidy workers.
233-
start_workers(
234-
max_task_count, run_tidy, (task_queue, lock, args.timeout, failed_files)
235-
)
233+
start_workers(max_task_count, run_tidy, (task_queue, lock, args.timeout, failed_files))
236234

237235
# Form the common args list.
238236
common_clang_tidy_args = []
@@ -295,5 +293,6 @@ def main():
295293
shutil.rmtree(tmpdir)
296294
sys.exit(return_code)
297295

296+
298297
if __name__ == "__main__":
299298
main()

0 commit comments

Comments
 (0)