Is it pythonic to define related consts like this?
define:
class LinkChoices(object):
FOLLOW, FRIENDSHIP, CLOSE_FRIENDSHIP, = 10, 20, 30,
using:
from some_module import LinkChoices
link.status = LinkChoices.FOLLOW
Are there any cons of defining consts like this?