options-automation/option_type.py

5 lines
80 B
Python

from enum import Enum
class OptionType(Enum):
CALL = 'CALL'
PUT = 'PUT'