summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_logging_not_lazy_with_logger.py
diff options
context:
space:
mode:
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")