fix: resolve CI type annotation issues
Some checks failed
CI / test (push) Failing after 5m7s
CI / build (push) Has been skipped

- Add missing imports (Optional, Dict, List, TYPE_CHECKING) to affected modules
- Add return type annotation -> None for __init__ methods
- Add type annotations for ast dict and scenario variables
- Create _colorize helper function to fix invalid fg parameter
- Add type ignore comment for analyze_ambiguity return value
This commit is contained in:
2026-02-02 12:32:02 +00:00
parent 8b41f73f95
commit ee009bd4b0

View File

@@ -1,4 +1,4 @@
"""Base exporter class for BDD frameworks.""" """Base exporter class for BDD frameworks."""
from abc import ABC, abstractmethod from abc import ABC, abstractmethod
from typing import Dict, List from typing import Dict, List