File: fruit.py

package info (click to toggle)
flufl.enum 7.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 184 kB
  • sloc: python: 551; makefile: 9
file content (7 lines) | stat: -rw-r--r-- 92 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
from flufl.enum import Enum


class Fruit(Enum):
    kiwi = 1
    banana = 2
    tomato = 3