diff --git a/CHANGELOG.md b/CHANGELOG.md index 568f37d5..f30820bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -48,6 +48,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed HRNet serverless function runtime error on images with alpha channel () - Preview & chunk cache settings are ignored () - Export annotations to Azure container () +- Fix the type of the credentials parameter of make_client from the Python SDK ### Security - Fixed vulnerability with social authentication () diff --git a/cvat-sdk/cvat_sdk/core/client.py b/cvat-sdk/cvat_sdk/core/client.py index 04169ced..b6e4a024 100644 --- a/cvat-sdk/cvat_sdk/core/client.py +++ b/cvat-sdk/cvat_sdk/core/client.py @@ -319,7 +319,7 @@ class CVAT_API_V2: def make_client( - host: str, *, port: Optional[int] = None, credentials: Optional[Tuple[int, int]] = None + host: str, *, port: Optional[int] = None, credentials: Optional[Tuple[str, str]] = None ) -> Client: url = host.rstrip("/") if port: