Skip to content

Commit

Permalink
style: add parameters to docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
niek-mereu committed Jan 30, 2025
1 parent f8ec4bb commit fe22cf7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion osman/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,9 @@ class OsmanConfig(object):
aws_secret_access_key: str
aws_region: str
aws_service: str
timeout: int
max_retries: int
retry_on_timeout: bool
"""

OPENSEARCH_HOST = os.environ.get("OPENSEARCH_HOST", None)
Expand Down Expand Up @@ -113,7 +116,6 @@ def __init__(
timeout: int = 10,
max_retries: int = 1,
retry_on_timeout: bool = False,

):
"""
Init OsmanConfig.
Expand Down

0 comments on commit fe22cf7

Please sign in to comment.