Skip to content

Commit

Permalink
fixing 3.8/3.9 compatability with ParamSpec
Browse files Browse the repository at this point in the history
  • Loading branch information
bandophahita committed Feb 7, 2024
1 parent 7c34b79 commit 6dae23d
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion screenpy_selenium/common.py
Original file line number Diff line number Diff line change
@@ -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")
Expand Down

0 comments on commit 6dae23d

Please sign in to comment.