From e9be710a16005f9e79618139e7c6f29ec5e9edce Mon Sep 17 00:00:00 2001 From: Fabian Beuke Date: Fri, 15 Dec 2023 23:04:14 +0100 Subject: [PATCH] right align values --- py/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/main.py b/py/main.py index 674c1c6..fd3ee33 100644 --- a/py/main.py +++ b/py/main.py @@ -43,4 +43,4 @@ def read_config_file(filename): }) # Print the data in a table format using tabulate -print(tabulate(extracted_data, headers="keys", tablefmt="simple_outline")) +print(tabulate(extracted_data, headers="keys", stralign="right", tablefmt="simple_outline"))