File tree 1 file changed +3
-3
lines changed
src/seer/automation/codegen
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
import logging
2
2
3
- from cachetools import LRUCache , cached
4
- from cachetools .keys import hashkey
3
+ from cachetools import LRUCache , cached # type: ignore[import-untyped]
4
+ from cachetools .keys import hashkey # type: ignore[import-untyped]
5
5
from langfuse .decorators import observe
6
6
from sentry_sdk .ai .monitoring import ai_track
7
7
from tqdm .autonotebook import tqdm
14
14
CodeAreIssuesFixableRequest ,
15
15
CodeRelevantWarningsOutput ,
16
16
CodeRelevantWarningsRequest ,
17
- RelevantWarningResult ,
18
17
)
19
18
from seer .automation .codegen .prompts import IsFixableIssuePrompts , ReleventWarningsPrompts
20
19
from seer .automation .component import BaseComponent
20
+ from seer .automation .models import RelevantWarningResult
21
21
from seer .dependency_injection import inject , injected
22
22
23
23
logger = logging .getLogger (__name__ )
You can’t perform that action at this time.
0 commit comments