summaryrefslogtreecommitdiff
path: root/format.py
diff options
context:
space:
mode:
authoradaliaramon <70635214+adaliaramon@users.noreply.github.com>2024-01-11 17:04:53 +0100
committerGitHub <noreply@github.com>2024-01-11 11:04:53 -0500
commit6eb3bf401cf768a81788e2aa90cb2cafbcd8d763 (patch)
tree30755ae76a5006599f66d1170095204546a50e3f /format.py
parent1a8772e540add725d5de7b4678ab0e12b4b1b362 (diff)
Removed unused imports and other minor improvements (#1602)
* Removed unused imports and other minor improvements * revert tools/ZAPD/ZAPD/genbuildinfo.py * revert diff.py * Update sym_info.py * revert asm_processor/ --------- Co-authored-by: fig02 <fig02srl@gmail.com> Co-authored-by: Dragorn421 <Dragorn421@users.noreply.github.com>
Diffstat (limited to 'format.py')
-rwxr-xr-xformat.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/format.py b/format.py
index aabe89e48..520a2d807 100755
--- a/format.py
+++ b/format.py
@@ -108,7 +108,7 @@ def format_files(src_files: List[str], extra_files: List[str], nb_jobs: int):
if nb_jobs != 1:
print(f"Formatting files with {nb_jobs} jobs")
else:
- print(f"Formatting files with a single job (consider using -j to make this faster)")
+ print("Formatting files with a single job (consider using -j to make this faster)")
# Format files in chunks to improve performance while still utilizing jobs
file_chunks = list(list_chunks(src_files, (len(src_files) // nb_jobs) + 1))