Skip to content

Commit c3a49c2

Browse files
committed
Fix return type
1 parent 0914837 commit c3a49c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pytest_bdd/scenario.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def get_step_function(request: FixtureRequest, step: Step) -> StepFunctionContex
175175
return None
176176

177177

178-
def parse_step_arguments(step: Step, context: StepFunctionContext) -> dict[str, object] | None:
178+
def parse_step_arguments(step: Step, context: StepFunctionContext) -> dict[str, object]:
179179
"""Parse step arguments."""
180180
parsed_args = context.parser.parse_arguments(step.name)
181181

0 commit comments

Comments
 (0)