summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_w0401_package/thing2.py
blob: 987965e27e7c97d378e1b99c5bab02300c49c11d (plain)
1
2
3
4
5
6
7
"""The second thing."""
# pylint: disable=no-absolute-import
__revision__ = None
from .all_the_things import THING1

THING2 = "I am thing2"
THING1_PLUS_THING2 = "%s, plus %s" % (THING1, THING2)