summaryrefslogtreecommitdiff
path: root/pylint/test/input/func_w0401_package/all_the_things.py
blob: b8bd47b9e2e894bb3328b67e50394e93fc4cc02d (plain)
1
2
3
4
5
6
7
8
9
"""All the things!"""
# pylint: disable=no-absolute-import
from .thing1 import THING1
from .thing2 import THING2
from .thing2 import THING1_PLUS_THING2
__revision__ = None

_ = (THING1, THING2, THING1_PLUS_THING2)
del _