Skip to content

Commit d24d24c

Browse files
committed
fix for indentation in line profiler output
1 parent 7ffe25f commit d24d24c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codeflash/verification/parse_line_profile_test_output.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def show_func(filename, start_lineno, func_name, timings, unit):
8585
if 'def' in line_ or nhits!='':
8686
table_rows.append((nhits, time, per_hit, percent, line_))
8787
pass
88-
out_table+= tabulate(headers=table_cols,tabular_data=table_rows,tablefmt="pipe")
88+
out_table+= tabulate(headers=table_cols,tabular_data=table_rows,tablefmt="pipe",colglobalalign=None, preserve_whitespace=True)
8989
out_table+='\n'
9090
return out_table
9191

0 commit comments

Comments
 (0)