Files
raptor-trading/invest-python-master/t_tech/invest/retrying/settings.py

10 lines
251 B
Python

import dataclasses
from t_tech.invest.retrying.settings_protocol import RetryClientSettingsProtocol
@dataclasses.dataclass()
class RetryClientSettings(RetryClientSettingsProtocol):
use_retry: bool = True
max_retry_attempt: int = 3