Skip to content

Commit eb26320

Browse files
committed
Backward compatibility fix
1 parent 41a605e commit eb26320

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

reportportal_client/steps/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def test_my_nested_step():
4343
4444
"""
4545
from functools import wraps
46-
from typing import Callable, ParamSpec, TypeVar, Optional, Dict, Union, Type
46+
from typing import Callable, TypeVar, Optional, Dict, Union, Type
4747

4848
import reportportal_client as rp
4949
# noinspection PyProtectedMember
@@ -55,8 +55,8 @@ def test_my_nested_step():
5555
NESTED_STEP_ITEMS = ('step', 'scenario', 'before_class', 'before_groups', 'before_method', 'before_suite',
5656
'before_test', 'after_test', 'after_suite', 'after_class', 'after_groups', 'after_method')
5757

58-
_Param = ParamSpec("_Param")
59-
_Return = TypeVar("_Return")
58+
_Param = TypeVar('_Param')
59+
_Return = TypeVar('_Return')
6060

6161

6262
# noinspection PyUnresolvedReferences

0 commit comments

Comments
 (0)