Fix docstring

This commit is contained in:
Alessio Bogon 2022-07-30 11:55:06 +02:00
parent d5112d8a87
commit 26e9926ab4
1 changed files with 3 additions and 3 deletions

View File

@ -155,9 +155,9 @@ def step(
) -> Callable[[TCallable], TCallable]:
"""Generic step decorator.
:param str name: Step name as in the feature file.
:param str type_: Step type ("given", "when" or "then"). If None, this step will work for all the types.
:param dict converters: Optional step arguments converters mapping
:param name: Step name as in the feature file.
:param type_: Step type ("given", "when" or "then"). If None, this step will work for all the types.
:param converters: Optional step arguments converters mapping
:param target_fixture: Optional fixture name to replace by step definition
:return: Decorator function for the step.