ruff/crates/ruff_linter/resources/test/fixtures/flake8_pyi/PYI024.pyi
2023-09-20 08:38:27 +02:00

11 lines
365 B
Python

import collections
person: collections.namedtuple # Y024 Use "typing.NamedTuple" instead of "collections.namedtuple"
from collections import namedtuple
person: namedtuple # Y024 Use "typing.NamedTuple" instead of "collections.namedtuple"
person = namedtuple(
"Person", ["name", "age"]
) # Y024 Use "typing.NamedTuple" instead of "collections.namedtuple"