diff options
author | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-03-11 18:15:47 +0200 |
---|---|---|
committer | Claudiu Popa <cpopa@cloudbasesolutions.com> | 2015-03-11 18:15:47 +0200 |
commit | 66cc4feff79b1619e02b83ed32c2ee319ca94031 (patch) | |
tree | 00c37186641f4ae55e1069bd7b0d6716a8dae97f /pylint/test/functional/abstract_method_py3.py | |
parent | 4fb159bc60c3fb4d45c5495423e7134788a5ebf9 (diff) | |
download | pylint-git-66cc4feff79b1619e02b83ed32c2ee319ca94031.tar.gz |
Remove abstract-class-not-used, for the same reasons as star-args and abstract-class-little-referenced.
Diffstat (limited to 'pylint/test/functional/abstract_method_py3.py')
-rw-r--r-- | pylint/test/functional/abstract_method_py3.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/pylint/test/functional/abstract_method_py3.py b/pylint/test/functional/abstract_method_py3.py index 93e2cf125..e7b044517 100644 --- a/pylint/test/functional/abstract_method_py3.py +++ b/pylint/test/functional/abstract_method_py3.py @@ -3,7 +3,6 @@ from __future__ import print_function # pylint: disable=missing-docstring, no-init, no-self-use # pylint: disable=too-few-public-methods -# pylint: disable=abstract-class-not-used import abc class Abstract(object): |