From 8160cef2b3dde870527a7582a38de0dc300a687a Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Sat, 7 May 2016 12:22:40 +0100 Subject: [PATCH] [Lint] Enable pylint 'not-callable' --- .pylintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 524e8cce9..eaa282f89 100644 --- a/.pylintrc +++ b/.pylintrc @@ -63,7 +63,7 @@ confidence= # Arranged by category: Convention, Error, Information, Refactor, Warning. # Category per line (wrapped categories are indented) using symbolic names instead of ids. disable=missing-docstring, invalid-name, wrong-import-position, wrong-import-order, - no-member, not-callable, no-name-in-module, + no-member, no-name-in-module, locally-disabled, R, unused-argument, fixme, protected-access, import-error, unused-variable,