summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_w0401_package/all_the_things.py
diff options
context:
space:
mode:
authorLaura M?dioni <laura.medioni@logilab.fr>2015-11-10 13:36:56 +0100
committerLaura M?dioni <laura.medioni@logilab.fr>2015-11-10 13:36:56 +0100
commit38fd37a36933409625f422cbd7b91740540e3172 (patch)
treefe0d1b372cb7098ceb91ab8725123661ffb77046 /pylint/test/input/func_w0401_package/all_the_things.py
parent722446bab92ad13489d73119d534c9a7cf8f8b2c (diff)
downloadpylint-38fd37a36933409625f422cbd7b91740540e3172.tar.gz
Check imports are located at the top of the module (right after docstring and comments)
related to issue #692
Diffstat (limited to 'pylint/test/input/func_w0401_package/all_the_things.py')
-rw-r--r--pylint/test/input/func_w0401_package/all_the_things.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pylint/test/input/func_w0401_package/all_the_things.py b/pylint/test/input/func_w0401_package/all_the_things.py
index 67a627e..b8bd47b 100644
--- a/pylint/test/input/func_w0401_package/all_the_things.py
+++ b/pylint/test/input/func_w0401_package/all_the_things.py
@@ -1,9 +1,9 @@
"""All the things!"""
# pylint: disable=no-absolute-import
-__revision__ = None
from .thing1 import THING1
from .thing2 import THING2
from .thing2 import THING1_PLUS_THING2
+__revision__ = None
_ = (THING1, THING2, THING1_PLUS_THING2)
del _