added known currencies

This commit is contained in:
Jim Geovedi 2017-07-23 22:56:48 +07:00
parent f6f15678fb
commit d5fd32a572

View File

@ -1,4 +1,13 @@
# coding: utf8
from __future__ import unicode_literals
_exc = {
"Rp": "$",
"RMB": "$",
}
NORM_EXCEPTIONS = {}
for string, norm in _exc.items():
NORM_EXCEPTIONS[string] = norm
NORM_EXCEPTIONS[string.title()] = norm