Skip to content

Commit

Permalink
Backward compatibility fix
Browse files Browse the repository at this point in the history
  • Loading branch information
HardNorth committed Dec 4, 2024
1 parent 41a605e commit eb26320
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions reportportal_client/steps/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def test_my_nested_step():
"""
from functools import wraps
from typing import Callable, ParamSpec, TypeVar, Optional, Dict, Union, Type
from typing import Callable, TypeVar, Optional, Dict, Union, Type

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

_Param = ParamSpec("_Param")
_Return = TypeVar("_Return")
_Param = TypeVar('_Param')
_Return = TypeVar('_Return')


# noinspection PyUnresolvedReferences
Expand Down

0 comments on commit eb26320

Please sign in to comment.