Skip to content

Commit 3e5fd32

Browse files
committed
Minor print refinement in tool script
1 parent 9502f28 commit 3e5fd32

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/collect-benchmarks.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ def combine_benchmarks(top_level_dir, output_dir):
113113
combined_files = [] # to store the paths to the combined TSVs
114114

115115
for root, dirs, files in os.walk(top_level_dir):
116-
print("Processing:", root)
116+
print(f"Processing: {root}")
117117

118118
# If there are no files in this directory, skip it
119119
if not files:
@@ -164,7 +164,7 @@ def combine_benchmarks(top_level_dir, output_dir):
164164
if os.path.exists(output_file_path) and os.path.getsize(output_file_path) == 0:
165165
os.remove(output_file_path)
166166
else:
167-
print(f"Created: {output_file_path}")
167+
print(f"Created: {output_file_path}")
168168
combined_files.append(output_file_path)
169169

170170
return combined_files

0 commit comments

Comments
 (0)