26 lines
735 B
Diff
26 lines
735 B
Diff
|
From db8a0cf5c66ced0ed49990a40a45a08373b34af5 Mon Sep 17 00:00:00 2001
|
||
|
From: Evgeni Golov <evgeni@golov.de>
|
||
|
Date: Fri, 1 Mar 2024 20:30:04 +0100
|
||
|
Subject: [PATCH 03/34] 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 57259bcb..f78c1c3f 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]
|
||
|
--
|
||
|
2.42.0
|
||
|
|