fix(contexts): resolve lint and typecheck failures in scope resolver module

- Sort __all__ in cleveragents/domain/contexts/__init__.py (RUF022)

- Remove unused ScopeChainResolver import from examples/scope_resolvers/git_issue_resolver.py (F401)

- Fix EntryPoints.get() type error in scope_chain_resolver.py by casting to dict before calling .get() (reportAttributeAccessIssue)
This commit is contained in:
2026-04-24 05:18:50 +00:00
committed by Forgejo
parent a5218c143c
commit e18851b172
3 changed files with 5 additions and 3 deletions
@@ -6,7 +6,6 @@ from typing import TYPE_CHECKING
if TYPE_CHECKING:
from cleveragents.domain.contexts import (
ScopeChainResolver,
ScopeResolutionContext,
)