Skip to content
Snippets Groups Projects
Commit 1845b517 authored by Andreas Klöckner's avatar Andreas Klöckner
Browse files

Placate flake8

parent 66739211
No related branches found
No related tags found
No related merge requests found
......@@ -153,7 +153,8 @@ class UnidirectionalUnifier(UnidirectionalUnifierBase):
if not isinstance(other, type(expr)):
return self.treat_mismatch(expr, other, unis)
if (expr.inames != other.inames
or type(expr.operation) != type(other.operation)):
or type(expr.operation) != type(other.operation) # noqa
):
return []
return self.rec(expr.expr, other.expr, unis)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment