Skip to content

Commit 408fe1d

Browse files
authored
[NFC][run-clang-tidy] Add minor type hints (#151873)
This script passes ``` python3 -m mypy --strict clang-tools-extra/clang-tidy/tool/run-clang-tidy.py ```
1 parent 84fa58c commit 408fe1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clang-tools-extra/clang-tidy/tool/run-clang-tidy.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ def print_profile_data(aggregated_data: Dict[str, float]) -> None:
236236
checkers.items(), key=lambda x: x[1]["user"] + x[1]["sys"], reverse=True
237237
)
238238

239-
def print_stderr(*args, **kwargs) -> None:
239+
def print_stderr(*args: Any, **kwargs: Any) -> None:
240240
print(*args, file=sys.stderr, **kwargs)
241241

242242
print_stderr(

0 commit comments

Comments
 (0)