tools/codeformat.py: Use input files when formatting python code.

Signed-off-by: stijn <stijn@ignitron.net>
This commit is contained in:
stijn
2026-02-11 11:11:24 +01:00
committed by Damien George
parent 2631b0614c
commit 412ffd4b32

View File

@@ -192,7 +192,7 @@ def main():
command.append("-v")
else:
command.append("-q")
command.append(".")
command.extend(files if files else ["."])
subprocess.check_call(command, cwd=TOP)