Closes #13283: removal of two unused variable in locale.py
This commit is contained in:
parent
42f06d225d
commit
e4ae5f7e0f
|
@ -135,8 +135,6 @@ def _group(s, monetary=False):
|
||||||
grouping = conv[monetary and 'mon_grouping' or 'grouping']
|
grouping = conv[monetary and 'mon_grouping' or 'grouping']
|
||||||
if not grouping:
|
if not grouping:
|
||||||
return (s, 0)
|
return (s, 0)
|
||||||
result = ""
|
|
||||||
seps = 0
|
|
||||||
if s[-1] == ' ':
|
if s[-1] == ' ':
|
||||||
stripped = s.rstrip()
|
stripped = s.rstrip()
|
||||||
right_spaces = s[len(stripped):]
|
right_spaces = s[len(stripped):]
|
||||||
|
|
Loading…
Reference in New Issue