diff --git a/mapytex/calculus/API/tokens/polynomial.py b/mapytex/calculus/API/tokens/polynomial.py index 82de79c..e9d2616 100644 --- a/mapytex/calculus/API/tokens/polynomial.py +++ b/mapytex/calculus/API/tokens/polynomial.py @@ -33,14 +33,9 @@ class Polynomial(Token): def __init__(self, a, name="", ancestor=None): """ Initiate Polynomial with a MO""" if not isinstance(a, MO): - if isinstance(a, str): - raise TypeError - else: - raise TypeError - else: - mo = a + raise TypeError - Token.__init__(self, mo, name, ancestor) + Token.__init__(self, a, name, ancestor) self._mathtype = "polynome" @classmethod