1
0
Fork 0

Oh, that centering is no more needed since I ditched currency descriptions.

This commit is contained in:
Alexander Andreev 2020-07-08 02:19:15 +04:00
parent dd138dcaca
commit 3bd4a73f29
1 changed files with 1 additions and 1 deletions

View File

@ -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: