File tree 1 file changed +4
-2
lines changed
src/cloudforet/cost_analysis/manager
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -319,7 +319,7 @@ def _make_data_info(
319
319
options : dict ,
320
320
tenant_id : str = None ,
321
321
agreement_type : str = None ,
322
- ):
322
+ ) -> dict :
323
323
additional_info : dict = self ._get_additional_info (result , options , tenant_id )
324
324
cost : float = self ._get_cost_from_result_with_options (result , options )
325
325
usage_quantity : float = self ._convert_str_to_float_format (
@@ -331,7 +331,9 @@ def _make_data_info(
331
331
product : str = self ._get_product_from_result (result )
332
332
tags : dict = self ._convert_tags_str_to_dict (result .get ("tags" ))
333
333
334
- aggregate_data = self ._get_aggregate_data (result , options , additional_info )
334
+ aggregate_data , additional_info = self ._get_aggregate_data (
335
+ result , options , additional_info
336
+ )
335
337
336
338
# Set Network Traffic Cost at Additional Info
337
339
additional_info : dict = self ._set_network_traffic_cost (
You can’t perform that action at this time.
0 commit comments