From 1845b517edbb342f58d4de4dce46d861bd6a18dd Mon Sep 17 00:00:00 2001
From: Andreas Kloeckner <inform@tiker.net>
Date: Sun, 18 Oct 2015 13:28:44 -0500
Subject: [PATCH] Placate flake8

---
 loopy/symbolic.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/loopy/symbolic.py b/loopy/symbolic.py
index 3311d2316..d65440d57 100644
--- a/loopy/symbolic.py
+++ b/loopy/symbolic.py
@@ -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)
-- 
GitLab