Fix(Core): Remove obselete try (use to debug)

This commit is contained in:
Bertrand Benjamin 2018-12-21 11:31:10 +01:00
parent f51ffbbe8b
commit a2c1174ff3
1 changed files with 1 additions and 4 deletions

View File

@ -30,10 +30,7 @@ def plus2txt(left, right):
"""
left_ = render_with_parenthesis(left, "+")
try:
right_ = render_with_parenthesis(right, "+")
except ValueError:
raise TypeError(f"right -> {type(right)} {right}")
right_ = render_with_parenthesis(right, "+")
display_plus = True
if right_.startswith("-"):