Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions allure-python-commons/src/_allure.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from functools import wraps
from typing import Any, Callable, TypeVar
from typing import Any, Callable, TypeVar, Union

from allure_commons._core import plugin_manager
from allure_commons.types import LabelType, LinkType, ParameterMode
Expand Down Expand Up @@ -161,7 +161,7 @@ def manual():
return Dynamic.label(LabelType.MANUAL, True)


def step(title):
def step(title: Union[str, _TFunc]):
if callable(title):
return StepContext(title.__name__, {})(title)
else:
Expand Down