Convert option type to a enum
This commit is contained in:
parent
02cfa6d7cc
commit
632294a89a
@ -1,2 +1,5 @@
|
|||||||
CALL = 'C'
|
from enum import Enum
|
||||||
PUT = 'P'
|
|
||||||
|
class OptionType(Enum):
|
||||||
|
CALL = 'CALL'
|
||||||
|
PUT = 'PUT'
|
Loading…
Reference in New Issue
Block a user