Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2019-04-07 21:13:35 +0300
committerPhilipp Hörist <philipp@hoerist.com>2019-04-07 21:13:55 +0300
commit1c39d66d211dd56cb2b2fe42a8f15a7ece6a104f (patch)
treea75eece58257dca436df022ab8f5ac3e9d9e904f /scripts
parentee38f7600408c9a3deeaa608c8ee5044c5178483 (diff)
Fix assignment-from-none pylint errors
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev/pylint-ci.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/dev/pylint-ci.sh b/scripts/dev/pylint-ci.sh
index 039286ac7..97ecfbcb1 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,C0330,C0411,C0412,C0413,E0203,E0401,E0611,E0710,E0712,E1101,E1102,E1128,E1133,E1136,R0201,R0901,R0904,R0913,R0916,R1702,W0201,W0212,W0221,W0223,W0311,W0401,W0603,W0613,W0614 "$@"
+"$PYLINT" --disable=C0103,C0302,C0330,C0411,C0412,C0413,E0203,E0401,E0611,E0710,E0712,E1101,E1102,E1133,E1136,R0201,R0901,R0904,R0913,R0916,R1702,W0201,W0212,W0221,W0223,W0311,W0401,W0603,W0613,W0614 "$@"
# C0103 invalid-name
# C0302 too-many-lines
@@ -16,7 +16,6 @@ PYLINT=${PYLINT:-pylint}
# E0712 catching-non-exception - GLib.GError is not recognized
# E1101 no-member
# E1102 not-callable
-# E1128 assignment-from-none
# E1133 not-an-iterable
# E1136 unsubscriptable-object
# R0201 no-self-use