summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcpopa <devnull@localhost>2014-01-09 15:21:40 +0200
committercpopa <devnull@localhost>2014-01-09 15:21:40 +0200
commit083eea1072f926ab1c34a8f7b08d8f587dab839e (patch)
tree221c596b58138dfaf22600e2f88a8f026da97874
parent4d0bf4a7bcf74306ee2b01b965f922cf2701c084 (diff)
downloadpylint-083eea1072f926ab1c34a8f7b08d8f587dab839e.tar.gz
Remove incomplete-protocol warning.
-rw-r--r--test/input/func_bad_reversed_sequence.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/input/func_bad_reversed_sequence.py b/test/input/func_bad_reversed_sequence.py
index 836c6f3..31c59c0 100644
--- a/test/input/func_bad_reversed_sequence.py
+++ b/test/input/func_bad_reversed_sequence.py
@@ -1,6 +1,6 @@
""" Checks that reversed() receive proper argument """
-# pylint: disable=too-few-public-methods,no-self-use,incomplete-protocol
+# pylint: disable=too-few-public-methods,no-self-use
from collections import deque
__revision__ = 0