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

11 lines
218 B
Python

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