Fixed issues raised in PR

This commit is contained in:
Rahul
2023-02-27 22:51:22 +00:00
parent 2261cbd92e
commit 39331b59ed
4 changed files with 47 additions and 20 deletions

View File

@@ -8,4 +8,8 @@ class MarketDirection(Enum):
LONG = "long"
SHORT = "short"
EVEN = "even"
NONE = ''
NONE = "none"
def __str__(self):
# convert to string
return self.value