Skip to content

Commit

Permalink
silence use-yield-from from pylint 3.1
Browse files Browse the repository at this point in the history
yield from cannot be used until we require python3.3 or greater
  • Loading branch information
evgeni committed Mar 4, 2024
1 parent b875ae2 commit ea89e81
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .pylintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down

0 comments on commit ea89e81

Please sign in to comment.