From f180acd0be28dbac53e3662c90df29465e760410 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Thu, 8 Sep 2022 16:42:34 -0500 Subject: [PATCH] other pylint version doesn't know this disable --- CircuitPython_Commodore_16_KB2040/matrixwhisperer/code.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CircuitPython_Commodore_16_KB2040/matrixwhisperer/code.py b/CircuitPython_Commodore_16_KB2040/matrixwhisperer/code.py index b93ae037d..e79b89289 100644 --- a/CircuitPython_Commodore_16_KB2040/matrixwhisperer/code.py +++ b/CircuitPython_Commodore_16_KB2040/matrixwhisperer/code.py @@ -155,7 +155,7 @@ while True: cols.add(other) else: rows.add(other) - to_check.append(other) # pylint: disable=modified-iterating-list + to_check.append(other) rows = sorted(rows) cols = sorted(cols)