Skip to content

Commit 332ebf5

Browse files
committed
tell pylint to chill out about a missing attribute
1 parent 434f04b commit 332ebf5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/test_transform.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -749,7 +749,7 @@ def test_map_domain_transform_map_validity_and_errors(ctx_factory):
749749
# Use constrain_loop_nesting if it's available
750750
cln_attr = getattr(lp, "constrain_loop_nesting", None)
751751
if cln_attr is not None:
752-
knl_map_dom = lp.constrain_loop_nesting(knl_map_dom, desired_prio)
752+
knl_map_dom = lp.constrain_loop_nesting(knl_map_dom, desired_prio) # noqa
753753
else:
754754
knl_map_dom = lp.prioritize_loops(knl_map_dom, desired_prio)
755755

0 commit comments

Comments
 (0)