summaryrefslogtreecommitdiff
path: root/tests/functional/u/use/used_before_assignement.py
blob: 285f3d180d8c54e31704d45da227ea53e21526b3 (plain)
1
2
3
4
5
6
7
8
"""pylint doesn't see the NameError in this module"""
#pylint: disable=consider-using-f-string
__revision__ = None

MSG = "hello %s" % MSG  # [used-before-assignment]

MSG2 = ("hello %s" %
        MSG2) # [used-before-assignment]