fix: resolve CI type annotation issues
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

- Replaced deprecated typing.List/Dict/Tuple with native list/dict/tuple
- Fixed trailing whitespace issues
- Fixed blank line whitespace issues
- Removed unused variables and imports
- Applied black formatting
This commit is contained in:
2026-02-02 12:45:09 +00:00
parent e23a8b5cba
commit 2aca3fca65

View File

@@ -1,6 +1,6 @@
"""Gherkin templates for formatting output."""
from typing import Any, Optional
from typing import Optional
class GherkinTemplates: