summaryrefslogtreecommitdiff
path: root/doc/data/messages/u/unsubscriptable-object/good.py
blob: 56e91444e92d20de8d5dc20565a8d5b7a25ea0e2 (plain)
1
2
3
4
5
6
7
8
9
class Fruit:
    def __init__(self):
        self.colors = ["red", "orange", "yellow"]

    def __getitem__(self, idx):
        return self.colors[idx]


Fruit()[1]