From 44e9e38f09ad2e6c1c8bbc2e0e2c6c832ea380f3 Mon Sep 17 00:00:00 2001 From: lhhyung Date: Thu, 5 Jun 2025 17:46:30 +0900 Subject: [PATCH] fix: fix typo --- .../cost_analysis/connector/azure_cost_mgmt_connector.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py b/src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py index 4b4ec8c..5ea7b72 100644 --- a/src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py +++ b/src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py @@ -5,7 +5,7 @@ from datetime import datetime from functools import wraps from io import BytesIO -from typing import get_type_hints, Union, Any +from typing import get_type_hints, Union, Any, Generator import numpy as np import pandas as pd @@ -249,7 +249,7 @@ def get_credit_data( credit_info = {} return credit_info - def get_cost_data(self, blobs: list, options: dict) -> list: + def get_cost_data(self, blobs: list, options: dict) -> Generator[Any, Any, None]: _LOGGER.debug(f"[get_cost_data] options: {options}") total_cost_count = 0 for blob in blobs: