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

This commit is contained in:
2026-02-02 12:56:00 +00:00
parent 770c611bbe
commit 688d338c69

View File

@@ -0,0 +1,7 @@
"""Requirements to Gherkin converter package."""
from requirements_to_gherkin.parser import RequirementsParser
from requirements_to_gherkin.generator import GherkinGenerator
from requirements_to_gherkin.models import Feature, Scenario, Step
__all__ = ["RequirementsParser", "GherkinGenerator", "Feature", "Scenario", "Step"]