2c3c408
1
2
3
4
5
6
7
8
9
10
11
from enum import Enum class DrawStyle(Enum): NONE = "none" ASCII = "ascii" SQUARE = "square" HEAVY = "heavy" ROUNDED = "rounded" DOUBLE = "double"