Skip to content

Commit 3ceace4

Browse files
committed
fix: remove unused noqa PLC0415 directives
1 parent 663b625 commit 3ceace4

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/treemapper/diffctx/graph.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -196,9 +196,9 @@ def _populate_graph(graph: Graph, all_edges: dict[tuple[FragmentId, FragmentId],
196196

197197

198198
def build_graph(fragments: list[Fragment], repo_root: Path | None = None) -> Graph:
199-
from .edges import collect_all_edges # type: ignore[import-not-found] # noqa: PLC0415
200-
from .edges.similarity.lexical import clamp_lexical_weight # type: ignore[import-not-found] # noqa: PLC0415
201-
from .embeddings import _build_embedding_edges # type: ignore[import-not-found] # noqa: PLC0415
199+
from .edges import collect_all_edges # type: ignore[import-not-found]
200+
from .edges.similarity.lexical import clamp_lexical_weight # type: ignore[import-not-found]
201+
from .embeddings import _build_embedding_edges # type: ignore[import-not-found]
202202

203203
graph = Graph()
204204
for frag in fragments:

0 commit comments

Comments
 (0)