Skip to content

Commit 44e9e38

Browse files
committed
fix: fix typo
1 parent 9b81ebd commit 44e9e38

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from datetime import datetime
66
from functools import wraps
77
from io import BytesIO
8-
from typing import get_type_hints, Union, Any
8+
from typing import get_type_hints, Union, Any, Generator
99

1010
import numpy as np
1111
import pandas as pd
@@ -249,7 +249,7 @@ def get_credit_data(
249249
credit_info = {}
250250
return credit_info
251251

252-
def get_cost_data(self, blobs: list, options: dict) -> list:
252+
def get_cost_data(self, blobs: list, options: dict) -> Generator[Any, Any, None]:
253253
_LOGGER.debug(f"[get_cost_data] options: {options}")
254254
total_cost_count = 0
255255
for blob in blobs:

0 commit comments

Comments
 (0)