Skip to content

Instantly share code, notes, and snippets.

@cosinekitty
Created May 8, 2020 22:03
Show Gist options
  • Select an option

  • Save cosinekitty/6ee8caa6499138b1de24597e7b15e9d7 to your computer and use it in GitHub Desktop.

Select an option

Save cosinekitty/6ee8caa6499138b1de24597e7b15e9d7 to your computer and use it in GitHub Desktop.
Example of simple enum declaration
#!/usr/bin/env python3
from enum import Enum, unique
@unique
class Suit(Enum):
Club = 1
Diamond = 2
Heart = 3
Spade = 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment