Fix(parsing): Remove spaces in string before parsing
This commit is contained in:
@@ -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)
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user