From 4726ae393d20313d2435d9cb59f3b0f04aa993eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eren=20G=C3=B6lge?= Date: Tue, 1 Jun 2021 09:14:16 +0200 Subject: [PATCH] pylint disable `not-callable` checks due to the warnings on torch layers --- .pylintrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.pylintrc b/.pylintrc index 1b3d64c2..34c121eb 100644 --- a/.pylintrc +++ b/.pylintrc @@ -158,7 +158,8 @@ disable=missing-docstring, deprecated-sys-function, exception-escape, comprehension-escape, - duplicate-code + duplicate-code, + not-callable # Enable the message, report, category or checker with the given id(s). You can # either give multiple identifier separated by comma (,) or put this option