Skip to content

Commit

Permalink
Merge pull request #25 from vanadium23/add-kzt-currency-symbol
Browse files Browse the repository at this point in the history
[Feat] add currency symbol for KZT
  • Loading branch information
arshadkazmi42 authored Mar 29, 2022
2 parents 89d6de8 + f9c1468 commit c94c1b2
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion currency_symbols/_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"KRW": "₩",
"KWD": "KD",
"KYD": "$",
"KZT": "лв",
"KZT": "",
"LAK": "₭",
"LBP": "£",
"LKR": "₨",
Expand Down
5 changes: 5 additions & 0 deletions currency_symbols/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,8 @@ def test_currency_symbols(self) -> None:
"¥",
"Should return CNY symbol"
)
self.assertEqual(
CurrencySymbols.get_symbol("KZT"),
"₸",
"Should return KZT symbol"
)

0 comments on commit c94c1b2

Please sign in to comment.