Files
ruff/resources/test/fixtures/N815.py
2022-11-14 13:21:04 -05:00

13 lines
256 B
Python

import collections
from collections import namedtuple
class C:
lower = 0
CONSTANT = 0
mixedCase = 0
_mixedCase = 0
mixed_Case = 0
myObj1 = collections.namedtuple("MyObj1", ["a", "b"])
myObj2 = namedtuple("MyObj2", ["a", "b"])