5 lines
75 B
Python
5 lines
75 B
Python
from enum import Enum
|
|
|
|
class OptionType(Enum):
|
|
PUT = 'P'
|
|
CALL = 'C' |