summaryrefslogtreecommitdiff
path: root/doc/data/messages/p/prefer-typing-namedtuple/bad.py
blob: d555b0f2655643acb2fca88e6e21b6e8eb1a1ed3 (plain)
1
2
3
4
5
from collections import namedtuple

Philosophy = namedtuple(  # [prefer-typing-namedtuple]
    "Philosophy", ("goodness", "truth", "beauty")
)