10 lines
251 B
Python
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
|