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

_ = (THING1, THING2, THING1_PLUS_THING2)
del _