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

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