from enum import IntEnum class Cells(IntEnum): BLANK = 0 FIRST_CHIP = 1 SECOND_CHIP = 2 WALL = 9