options-automation/option_type.py

5 lines
80 B
Python
Raw Normal View History

2024-02-08 11:22:07 +00:00
from enum import Enum
class OptionType(Enum):
CALL = 'CALL'
PUT = 'PUT'