Skip to content

Commit 1f8c910

Browse files
committed
mypy
1 parent e825fa1 commit 1f8c910

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/seer/automation/codegen/relevant_warnings_component.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import logging
22

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]
55
from langfuse.decorators import observe
66
from sentry_sdk.ai.monitoring import ai_track
77
from tqdm.autonotebook import tqdm
@@ -14,10 +14,10 @@
1414
CodeAreIssuesFixableRequest,
1515
CodeRelevantWarningsOutput,
1616
CodeRelevantWarningsRequest,
17-
RelevantWarningResult,
1817
)
1918
from seer.automation.codegen.prompts import IsFixableIssuePrompts, ReleventWarningsPrompts
2019
from seer.automation.component import BaseComponent
20+
from seer.automation.models import RelevantWarningResult
2121
from seer.dependency_injection import inject, injected
2222

2323
logger = logging.getLogger(__name__)

0 commit comments

Comments
 (0)