pylint: Disable raise-missing-from

This commit is contained in:
Florian Bruhin 2021-12-02 16:36:56 +01:00
parent 636c4cac4d
commit b9d58034d1
1 changed files with 2 additions and 1 deletions

View File

@ -48,7 +48,8 @@ disable=locally-disabled,
import-outside-toplevel,
bad-continuation, # This lint disagrees with Black
consider-using-f-string,
logging-fstring-interpolation
logging-fstring-interpolation,
raise-missing-from
[BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$