1
0
Fork 0
This commit is contained in:
Alexander Andreev 2020-07-08 02:21:10 +04:00
parent ba5d500706
commit 9b4270632e
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}{CURRENCIES[cur].name}")
print(f"{cur:^5}{CURRENCIES[cur].name}")
print("Default currency is", Configuration()["default-currency"])
def load_currencies() -> None: