From 52b448e36800979762a8f13dd5b789a7c676a063 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 23 Mar 2017 20:51:37 +0100 Subject: 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. --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to '.pylintrc') diff --git a/.pylintrc b/.pylintrc index 3f06facaf..c94058297 100644 --- a/.pylintrc +++ b/.pylintrc @@ -38,7 +38,8 @@ disable=no-self-use, suppressed-message, too-many-return-statements, duplicate-code, - wrong-import-position + wrong-import-position, + no-else-return [BASIC] function-rgx=[a-z_][a-z0-9_]{2,50}$ -- cgit v1.2.3-54-g00ecf