mirror of
https://github.com/brygphilomena/pysimplesat.git
synced 2025-11-06 17:57:29 +00:00
10 lines
307 B
Python
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
|