From ba5d5007061b30d4f4ecaa15053c4410acff4f11 Mon Sep 17 00:00:00 2001 From: "Alexander \"Arav\" Andreev" Date: Wed, 8 Jul 2020 02:20:23 +0400 Subject: [PATCH] Ho-ho, yet another one line fix in the same place! xD --- piggybank/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/piggybank/__main__.py b/piggybank/__main__.py index 4c01456..18e457b 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}") + print(f"{cur} ┃ {CURRENCIES[cur].name}") print("Default currency is", Configuration()["default-currency"]) def load_currencies() -> None: