summaryrefslogtreecommitdiff
path: root/pylint/test/functional/not_context_manager.py
diff options
context:
space:
mode:
Diffstat (limited to 'pylint/test/functional/not_context_manager.py')
-rw-r--r--pylint/test/functional/not_context_manager.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/test/functional/not_context_manager.py b/pylint/test/functional/not_context_manager.py
index 97f6e97..3d56b60 100644
--- a/pylint/test/functional/not_context_manager.py
+++ b/pylint/test/functional/not_context_manager.py
@@ -1,7 +1,7 @@
"""Tests that onjects used in a with statement implement context manager protocol"""
# pylint: disable=too-few-public-methods, invalid-name, import-error, missing-docstring
-# pylint: disable=no-init
+# pylint: disable=no-init,wrong-import-position
# Tests no messages for objects that implement the protocol
class Manager(object):
def __enter__(self):