From b456aa67bc54eb38c96123e3d006930e41a7be16 Mon Sep 17 00:00:00 2001 From: Marcel Robitaille Date: Thu, 11 Nov 2021 20:57:59 -0500 Subject: [PATCH] [python] Pylint: ignore consider iterating dictionary --- pylint/pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pylint/pylintrc b/pylint/pylintrc index eebdb72..61e9293 100644 --- a/pylint/pylintrc +++ b/pylint/pylintrc @@ -150,7 +150,8 @@ disable=print-statement, too-many-arguments, too-many-statements, too-few-public-methods, - broad-except + broad-except, + consider-iterating-dictionary # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option