Fix(parsing): Remove spaces in string before parsing
This commit is contained in:
parent
9e0a703e98
commit
2489eccb74
@ -689,7 +689,7 @@ def str2(sink, convert_to_mo=True):
|
|||||||
else:
|
else:
|
||||||
str2_corout = lookforNumbers(operator_corout(missing_times(pparser(sink))))
|
str2_corout = lookforNumbers(operator_corout(missing_times(pparser(sink))))
|
||||||
|
|
||||||
for i in expression:
|
for i in expression.replace(" ",""):
|
||||||
str2_corout.send(i)
|
str2_corout.send(i)
|
||||||
a = str2_corout.throw(STOOOP)
|
a = str2_corout.throw(STOOOP)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user