style: apply ruff format to resource_type_inheritance_cycle_detection_steps.py
CI / lint (pull_request) Successful in 47s
CI / push-validation (pull_request) Successful in 38s
CI / helm (pull_request) Successful in 49s
CI / build (pull_request) Successful in 54s
CI / typecheck (pull_request) Successful in 1m8s
CI / quality (pull_request) Successful in 1m20s
CI / security (pull_request) Successful in 1m28s
CI / unit_tests (pull_request) Failing after 2m29s
CI / coverage (pull_request) Has been skipped
CI / docker (pull_request) Has been skipped
CI / integration_tests (pull_request) Successful in 10m30s
CI / status-check (pull_request) Failing after 3s

Collapse two-line function signature to single line to satisfy ruff format check.
This commit is contained in:
HAL9000
2026-04-23 11:54:44 +00:00
committed by drew
parent 1f5a6f3341
commit 8069bc08a4
@@ -92,9 +92,7 @@ def step_creation_failed(context: Any, fragment: str) -> None:
@then('the creation should fail with "{fragment1}" or "{fragment2}"')
def step_creation_failed_either(
context: Any, fragment1: str, fragment2: str
) -> None:
def step_creation_failed_either(context: Any, fragment1: str, fragment2: str) -> None:
"""Assert that creation failed with an error containing either fragment."""
err = context.creation_error # type: ignore[attr-defined]
assert err is not None, "Expected creation to fail but it succeeded"