Skip to content

Commit

Permalink
Add possibility to provide **kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
hagenw committed Sep 25, 2024
1 parent 9faf954 commit 1005c6b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions audbackend/core/backend/minio.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ def __init__(
*,
authentication: typing.Tuple[str, str] = None,
secure: bool = None,
**kwargs,
):
super().__init__(host, repository, authentication=authentication)

Expand All @@ -72,6 +73,7 @@ def __init__(
access_key=self.authentication[0],
secret_key=self.authentication[1],
secure=secure,
**kwargs,
)

@classmethod
Expand Down

0 comments on commit 1005c6b

Please sign in to comment.