2025-07-30 15:58:55 -05:00

10 lines
307 B
Python

class Config:
def __init__(self, max_retries=3) -> None:
"""
Initializes a new instance of the Config class.
Args:
max_retries (int): The maximum number of retries for a retryable HTTP operation (500) (default = 3)
"""
self.max_retries = max_retries