fix(lint): reorder imports per PEP 8 ruff/isort rule in actor_loading_steps.py
CI / benchmark-publish (pull_request) Has been skipped
CI / push-validation (pull_request) Successful in 37s
CI / build (pull_request) Successful in 1m17s
CI / lint (pull_request) Failing after 1m26s
CI / helm (pull_request) Successful in 46s
CI / quality (pull_request) Successful in 1m52s
CI / typecheck (pull_request) Successful in 1m53s
CI / security (pull_request) Successful in 2m4s
CI / integration_tests (pull_request) Successful in 4m53s
CI / e2e_tests (pull_request) Successful in 5m37s
CI / unit_tests (pull_request) Successful in 5m48s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / status-check (pull_request) Failing after 3s
CI / benchmark-regression (pull_request) Failing after 1m9s

The typing.cast import was placed after third-party imports (behave),
violating ruff/isort PEP 8 ordering enforced by CI lint. Move it into
the stdlib block before the blank-line separator from third-party.

Fixes CI / lint failure on this branch. Closes #8588
This commit is contained in:
2026-05-15 00:27:40 +00:00
parent 47d0fb156d
commit 710aa131f8
+1 -1
View File
@@ -6,10 +6,10 @@ import tempfile
import threading
import time
from pathlib import Path
from typing import cast
from behave import given, then, when
from behave.runner import Context
from typing import cast
from cleveragents.actor.loader import ActorLoader
from cleveragents.actor.schema import ActorConfigSchema