Fix(Core): Remove obselete try (use to debug)
This commit is contained in:
parent
f51ffbbe8b
commit
a2c1174ff3
@ -30,10 +30,7 @@ def plus2txt(left, right):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
left_ = render_with_parenthesis(left, "+")
|
left_ = render_with_parenthesis(left, "+")
|
||||||
try:
|
right_ = render_with_parenthesis(right, "+")
|
||||||
right_ = render_with_parenthesis(right, "+")
|
|
||||||
except ValueError:
|
|
||||||
raise TypeError(f"right -> {type(right)} {right}")
|
|
||||||
|
|
||||||
display_plus = True
|
display_plus = True
|
||||||
if right_.startswith("-"):
|
if right_.startswith("-"):
|
||||||
|
Loading…
Reference in New Issue
Block a user