From ea89e81236bda4781d1ae12faa43f734edf0f78e Mon Sep 17 00:00:00 2001 From: Evgeni Golov Date: Fri, 1 Mar 2024 20:30:04 +0100 Subject: [PATCH] silence use-yield-from from pylint 3.1 yield from cannot be used until we require python3.3 or greater --- .pylintrc | 1 + 1 file changed, 1 insertion(+) diff --git a/.pylintrc b/.pylintrc index 57259bcb6a..f78c1c3f2f 100644 --- a/.pylintrc +++ b/.pylintrc @@ -57,6 +57,7 @@ disable= redundant-u-string-prefix, # still have py2 to support logging-format-interpolation, logging-not-lazy, + use-yield-from, # yield from cannot be used until we require python 3.3 or greater too-many-lines # we do not want to take care about that one [FORMAT]