summaryrefslogtreecommitdiff
path: root/tests/input/func_w0401_package/thing2.py
blob: 80bec1dd861e3b32a82f97df04e1117bce897a33 (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 = f"{THING1}, plus {THING2}"