see: https://github.com/python-babel/babel/releases/tag/v2.14.0
see: https://github.com/snoopyjc/ssf/blob/master/ssf/ssf.py#L570
should change from:
self.decimal_point = decimal_separator or locale.number_symbols['decimal']
to this maybe?
self.decimal_point = decimal_separator or locale.number_symbols.get('decimal') or locale.number_symbols.get('latn', {}).get('decimal')
fixed in PR #18
which tries to merge in https://github.com/Scrub-AI/ssf/tree/0.2.3
see: https://github.com/python-babel/babel/releases/tag/v2.14.0
see: https://github.com/snoopyjc/ssf/blob/master/ssf/ssf.py#L570
should change from:
to this maybe?
fixed in PR #18
which tries to merge in https://github.com/Scrub-AI/ssf/tree/0.2.3