From ed7be3f64cb9208fee602128c7a28ded3b3677b0 Mon Sep 17 00:00:00 2001 From: Ujwal Narayan <31547494+ujwal-narayan@users.noreply.github.com> Date: Mon, 27 May 2019 15:22:52 +0530 Subject: [PATCH] Update norm_exceptions.py (#3778) * Update norm_exceptions.py Extended the Currency set to include Franc, Indian Rupee, Bangladeshi Taka, Korean Won, Mexican Dollar, and Egyptian Pound * Fix formatting [ci skip] --- spacy/lang/norm_exceptions.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/spacy/lang/norm_exceptions.py b/spacy/lang/norm_exceptions.py index 8766e2815..341967a78 100644 --- a/spacy/lang/norm_exceptions.py +++ b/spacy/lang/norm_exceptions.py @@ -53,5 +53,11 @@ BASE_NORMS = { "US$": "$", "C$": "$", "A$": "$", - "₺" : "$", + "₺": "$", + "₹": "$", + "৳": "$", + "₩": "$", + "Mex$": "$", + "₣": "$", + "E£": "$", }