pylint: Ignore no-else-return

This will be added in the next pylint release, and it seems we can already add
it without getting an error.
This commit is contained in:
Florian Bruhin 2017-03-23 20:51:37 +01:00
parent 38beba98b9
commit 52b448e368

View File

@ -38,7 +38,8 @@ disable=no-self-use,
suppressed-message, suppressed-message,
too-many-return-statements, too-many-return-statements,
duplicate-code, duplicate-code,
wrong-import-position wrong-import-position,
no-else-return
[BASIC] [BASIC]
function-rgx=[a-z_][a-z0-9_]{2,50}$ function-rgx=[a-z_][a-z0-9_]{2,50}$