__init__ must return None to please mypy
This commit is contained in:
parent
78af4bc785
commit
dbc3874b4f
@ -42,7 +42,7 @@ class IStrategy(ABC):
|
|||||||
stoploss: float
|
stoploss: float
|
||||||
ticker_interval: str
|
ticker_interval: str
|
||||||
|
|
||||||
def __init__(self, config: dict):
|
def __init__(self, config: dict) -> None:
|
||||||
self.config = config
|
self.config = config
|
||||||
|
|
||||||
@abstractmethod
|
@abstractmethod
|
||||||
|
Loading…
Reference in New Issue
Block a user