Skip to content

Instantly share code, notes, and snippets.

@WhatIThinkAbout
Last active May 25, 2022 17:54
Show Gist options
  • Select an option

  • Save WhatIThinkAbout/1ebc3dd0b0eae59211b9c21337dfe71d to your computer and use it in GitHub Desktop.

Select an option

Save WhatIThinkAbout/1ebc3dd0b0eae59211b9c21337dfe71d to your computer and use it in GitHub Desktop.
from enum import IntEnum
''' simple helper class to enumerate actions in the grid levels '''
class Actions(IntEnum):
Stay = 0
North = 1
East = 2
South = 3
West = 4
# get the enum name without the class
def __str__(self): return self.name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment