Skip to content

Commit dba5c7f

Browse files
committed
Address new ruff lint
1 parent 25c49bc commit dba5c7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

loopy/codegen/loop.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -302,8 +302,8 @@ def set_up_hw_parallel_loops(
302302
other_iname for other_iname in inames_in_subkernel
303303
if (kernel.iname_tags_of_type(other_iname, UniqueInameTag)
304304
and other_iname != iname
305-
and any(_tag.key == tag.key
306-
for _tag in kernel.iname_tags_of_type(
305+
and any(tag_.key == tag.key
306+
for tag_ in kernel.iname_tags_of_type(
307307
other_iname, InameImplementationTag)))]
308308

309309
# {{{ 'implement' hardware axis boundaries

0 commit comments

Comments
 (0)