7 lines
128 B
Python
7 lines
128 B
Python
from typing import Protocol
|
|
|
|
|
|
class RetryClientSettingsProtocol(Protocol):
|
|
use_retry: bool
|
|
max_retry_attempt: int
|