From b91b64997ebee509a8c6bf8e48e3c81e41d82410 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philipp=20H=C3=B6rist?= Date: Sun, 7 Apr 2019 21:47:00 +0200 Subject: Fix no-callable pylint errors --- scripts/dev/pylint-ci.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'scripts') diff --git a/scripts/dev/pylint-ci.sh b/scripts/dev/pylint-ci.sh index 78df0d929..03f9f37a3 100755 --- a/scripts/dev/pylint-ci.sh +++ b/scripts/dev/pylint-ci.sh @@ -1,7 +1,7 @@ #!/bin/sh PYLINT=${PYLINT:-pylint} -"$PYLINT" --disable=C0103,C0302,C0301,C0330,E0203,E0401,E0611,E0710,E0712,E1101,E1102,E1133,E1136,R0201,R0901,R0904,R0912,R0913,R0914,R0915,R0916,R1702,R1710,W0201,W0212,W0221,W0223,W0231,W0233,W0603,W0613 "$@" +"$PYLINT" --disable=C0103,C0302,C0301,C0330,E0203,E0401,E0611,E0710,E0712,E1101,E1133,E1136,R0201,R0901,R0904,R0912,R0913,R0914,R0915,R0916,R1702,R1710,W0201,W0212,W0221,W0223,W0231,W0233,W0603,W0613 "$@" # C0103 invalid-name # C0301 line-too-long @@ -13,7 +13,6 @@ PYLINT=${PYLINT:-pylint} # E0710 raising-non-exception - GLib.GError is not recognized # E0712 catching-non-exception - GLib.GError is not recognized # E1101 no-member -# E1102 not-callable # E1133 not-an-iterable # E1136 unsubscriptable-object # R0201 no-self-use -- cgit v1.2.3