Skip to content

Commit 34a5e50

Browse files
committed
Missed a docstring tidy up
1 parent 8b75426 commit 34a5e50

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/pytest_bdd/scenario.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,6 @@ def get_step_function(request: FixtureRequest, step: Step) -> StepFunctionContex
157157
Then we let `patch_argumented_step_functions` find out what step definition fixtures can parse the current step,
158158
and it will inject them for the step fixture name.
159159
Finally, we let request.getfixturevalue(...) fetch the step definition fixture.
160-
Data tables are considered if the step has them defined.
161160
"""
162161
__tracebackhide__ = True
163162
bdd_name = get_step_fixture_name(step=step)
@@ -173,7 +172,7 @@ def get_step_function(request: FixtureRequest, step: Step) -> StepFunctionContex
173172
def _execute_step_function(
174173
request: FixtureRequest, scenario: Scenario, step: Step, context: StepFunctionContext
175174
) -> None:
176-
"""Execute step function"""
175+
"""Execute step function."""
177176
__tracebackhide__ = True
178177
kw = {
179178
"request": request,

0 commit comments

Comments
 (0)