diff --git a/screenpy_selenium/common.py b/screenpy_selenium/common.py index 02b9eb1..11f3adb 100644 --- a/screenpy_selenium/common.py +++ b/screenpy_selenium/common.py @@ -1,9 +1,12 @@ """module to hold shared objects.""" + from __future__ import annotations import warnings from functools import wraps -from typing import TYPE_CHECKING, Callable, ParamSpec, TypeVar +from typing import TYPE_CHECKING, Callable, TypeVar + +from typing_extensions import ParamSpec if TYPE_CHECKING: P = ParamSpec("P")