summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_logging_not_lazy_with_logger.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_logging_not_lazy_with_logger.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_logging_not_lazy_with_logger.py')
-rw-r--r--pylint/test/input/func_logging_not_lazy_with_logger.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/pylint/test/input/func_logging_not_lazy_with_logger.py b/pylint/test/input/func_logging_not_lazy_with_logger.py
index afbe285..973a5c7 100644
--- a/pylint/test/input/func_logging_not_lazy_with_logger.py
+++ b/pylint/test/input/func_logging_not_lazy_with_logger.py
@@ -1,9 +1,8 @@
"""Logging warnings using a logger class."""
from __future__ import absolute_import
-__revision__ = ''
-
import logging
+__revision__ = ''
LOG = logging.getLogger("domain")
LOG.debug("%s" % "junk")