From 390823cd6a1048de540391995162fd3d71059db3 Mon Sep 17 00:00:00 2001
From: jdsteve2 <jdsteve2@illinois.edu>
Date: Tue, 7 Apr 2020 06:30:39 -0500
Subject: [PATCH] remove unnecessary parens in warning

---
 loopy/check.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/loopy/check.py b/loopy/check.py
index b4ef7d6fa..da49c1d11 100644
--- a/loopy/check.py
+++ b/loopy/check.py
@@ -194,7 +194,7 @@ def check_for_unused_inames(kernel):
             "Found unused inames in kernel: %s "
             "Unused inames during linearization will be prohibited in "
             "Loopy version 2021.X."
-            % (unused_inames))
+            % unused_inames)
 
 
 def _is_racing_iname_tag(tv, tag):
-- 
GitLab