blob: d1f3ebab23f2f89fd070a318d5ec0dd882814cce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
FELIDAES = { # [consider-using-namedtuple-or-dataclass]
"The queen's cymric, fragile furry friend": {
"tail_length_cm": 1,
"paws": 4,
"eyes": 2,
"Elizabethan collar": 1,
},
"Rackat the red, terror of the sea": {
"tail_length_cm": 13,
"paws": 3,
"eyes": 1,
"Red Hat": 1,
},
}
|