From 3bd4a73f299852ec77540c7300dd3e10c743a42b Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Wed, 8 Jul 2020 02:19:15 +0400 Subject: [PATCH] Oh, that centering is no more needed since I ditched currency descriptions. --- piggybank/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piggybank/__main__.py b/piggybank/__main__.py index df84d1f..4c01456 100644 --- a/piggybank/__main__.py +++ b/piggybank/__main__.py @@ -115,7 +115,7 @@ def print_supported_currencies() -> None: """Print a list of supported currencies.""" print("Supported currencies are:") for cur in CURRENCIES.keys(): - print(f" {cur:^4} ┃ {CURRENCIES[cur].name:^31}") + print(f" {cur:^4} ┃ {CURRENCIES[cur].name}") print("Default currency is", Configuration()["default-currency"]) def load_currencies() -> None: