Skip to content

Commit d2cb4fe

Browse files
fix pylint issue
1 parent be1b15f commit d2cb4fe

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/api/helpers/azure_openai_helper.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
from azure.identity import DefaultAzureCredential, get_bearer_token_provider
88
from common.config.config import Config
99

10+
1011
def get_azure_openai_client():
1112
"""
1213
Initializes and returns an Azure OpenAI client using a bearer token provider.
@@ -21,4 +22,4 @@ def get_azure_openai_client():
2122
api_version=config.azure_openai_api_version,
2223
azure_ad_token_provider=token_provider,
2324
)
24-
return client
25+
return client

0 commit comments

Comments
 (0)