1
0
Fork 0

Ho-ho, yet another one line fix in the same place! xD

This commit is contained in:
Alexander Andreev 2020-07-08 02:20:23 +04:00
parent 3bd4a73f29
commit ba5d500706
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}")
print(f"{cur}{CURRENCIES[cur].name}")
print("Default currency is", Configuration()["default-currency"])
def load_currencies() -> None: