conditional checks

This commit is contained in:
null
2024-03-01 17:23:19 +01:00
parent 962c84d89f
commit d8948b8051
3 changed files with 84 additions and 10 deletions
+8
View File
@@ -0,0 +1,8 @@
from dataclasses import dataclass
@dataclass
class Condition:
id: str
symbol: str
condition: str
value: float
-1
View File
@@ -1,6 +1,5 @@
from dataclasses import dataclass
from typing import Generic, TypeVar, Optional
import json
T = TypeVar('T')