Skip to content

Commit 6574315

Browse files
authored
Merge pull request #116 from lhhyung/master
Fix import
2 parents 1fab42a + 7624b53 commit 6574315

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/cloudforet/cost_analysis/connector/azure_cost_mgmt_connector.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import logging
22
import os
3+
import re
34
import tempfile
45
import time
56
from datetime import datetime
@@ -10,7 +11,11 @@
1011
import numpy as np
1112
import pandas as pd
1213
import requests
13-
from azure.core.exceptions import ResourceNotFoundError, HttpResponseError
14+
from azure.core.exceptions import (
15+
ResourceNotFoundError,
16+
HttpResponseError,
17+
ServiceResponseError,
18+
)
1419
from azure.identity import DefaultAzureCredential
1520
from azure.mgmt.billing import BillingManagementClient
1621
from azure.mgmt.consumption import ConsumptionManagementClient

0 commit comments

Comments
 (0)