Skip to content

Commit c2560fc

Browse files
authored
forgot to change top of class typing (#878)
1 parent 7c1cf31 commit c2560fc

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/codemodder/context.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
from codemodder.utils.update_finding_metadata import update_finding_metadata
2929

3030
if TYPE_CHECKING:
31+
from azure.ai.inference import ChatCompletionsClient
3132
from openai import OpenAI
3233

3334
from codemodder.codemods.base_codemod import BaseCodemod
@@ -50,7 +51,8 @@ class CodemodExecutionContext:
5051
max_workers: int = 1
5152
tool_result_files_map: dict[str, list[str]]
5253
semgrep_prefilter_results: ResultSet | None = None
53-
llm_client: OpenAI | None = None
54+
openai_llm_client: OpenAI | None = None
55+
azure_llama_llm_client: ChatCompletionsClient | None = None
5456

5557
def __init__(
5658
self,

0 commit comments

Comments
 (0)