Feat(Typing): Write all str related typing functions
This commit is contained in:
@@ -709,7 +709,7 @@ def mopolynomial_mopolynomial(left, right):
|
||||
"""
|
||||
common_degree = set(left.monomials.keys()).intersection(right.monomials.keys())
|
||||
if not common_degree:
|
||||
raise NotImplementedError("Polynomial with no constant, no calculus to do")
|
||||
raise NotImplementedError("No degree in common, no calculus to do")
|
||||
|
||||
merge_monomials = {**left.monomials, **right.monomials}
|
||||
for deg in common_degree:
|
||||
|
Reference in New Issue
Block a user