From bfac0b9b4a83813d8c95aa63ae4b8c80b058b16e Mon Sep 17 00:00:00 2001 From: Pratiksha Sankhe Date: Mon, 23 Sep 2024 20:21:10 +0530 Subject: [PATCH] added return type Signed-off-by: Pratiksha Sankhe --- cloud_storage_handler/clients/minio_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloud_storage_handler/clients/minio_client.py b/cloud_storage_handler/clients/minio_client.py index 662b957..e3a5e8a 100644 --- a/cloud_storage_handler/clients/minio_client.py +++ b/cloud_storage_handler/clients/minio_client.py @@ -26,7 +26,7 @@ def __init__(self, config_file=None): config_file = config_file or get_config_path() self.config = Foca(config_file=config_file).conf - def get_minio_config(self): + def get_minio_config(self) -> MinioConfig: """Retrieve the MinIO configuration. Returns: