Skip to content

Commit 09920e7

Browse files
sbryngelsonclaude
andcommitted
Suppress pylint too-many-nested-blocks for bench()
The retry loop adds nesting depth beyond pylint's default limit. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 84835be commit 09920e7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

toolchain/mfc/bench.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ class BenchCase:
1616
path: str
1717
args: typing.List[str]
1818

19-
# pylint: disable=too-many-locals, too-many-branches, too-many-statements
19+
# pylint: disable=too-many-locals, too-many-branches, too-many-statements, too-many-nested-blocks
2020
def bench(targets = None):
2121
if targets is None:
2222
targets = ARG("targets")

0 commit comments

Comments
 (0)