From de384467f504d5f0b2779d02c6d3cc40b79c0add Mon Sep 17 00:00:00 2001 From: Nicholas Curtis Date: Thu, 29 Feb 2024 12:35:52 -0500 Subject: [PATCH] push missing rabulate through get_table_string Signed-off-by: Nicholas Curtis --- src/utils/tty.py | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/utils/tty.py b/src/utils/tty.py index eae3dc2849..05fceb3363 100644 --- a/src/utils/tty.py +++ b/src/utils/tty.py @@ -265,11 +265,6 @@ def show_kernel_stats(args, runs, archConfigs, output): df = single_df print( - tabulate( - df, - headers="keys", - tablefmt="fancy_grid", - floatfmt="." + str(args.decimal) + "f", - ), + get_table_string(df, transpose=False, decimal=args.decimal), file=output, )