From f5ef9df1f057e9ea53b18cfdc24b2f79e23d5431 Mon Sep 17 00:00:00 2001 From: CleverThis Date: Thu, 23 Apr 2026 22:30:31 +0000 Subject: [PATCH] test(tui): fix type-ignore violation in tdd block cursor navigation steps Remove disallowed # type: ignore[import-untyped] comment from behave import in tdd_tui_block_cursor_navigation_steps.py, consistent with all other step definition files in the project. All local quality gates pass: lint, typecheck, security_scan, dead_code, complexity, format. --- features/steps/tdd_tui_block_cursor_navigation_steps.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/features/steps/tdd_tui_block_cursor_navigation_steps.py b/features/steps/tdd_tui_block_cursor_navigation_steps.py index 4424ad2b5..706b73b61 100644 --- a/features/steps/tdd_tui_block_cursor_navigation_steps.py +++ b/features/steps/tdd_tui_block_cursor_navigation_steps.py @@ -16,7 +16,7 @@ from __future__ import annotations from typing import Any -from behave import then, when # type: ignore[import-untyped] +from behave import then, when @when("I inspect the TUI app BINDINGS for block cursor navigation")