summaryrefslogtreecommitdiff
path: root/tests/input/func_w0401_package/thing2.py
blob: d7a0f223917129f07669671ac9ee16dbcca4120a (plain)
1
2
3
4
5
6
7
"""The second thing."""

from .all_the_things import THING1
__revision__ = None

THING2 = "I am thing2"
THING1_PLUS_THING2 = f"{THING1}, plus {THING2}"