Skip to content

Commit 7e67f03

Browse files
committed
Fix ParamSpec default
1 parent 175e053 commit 7e67f03

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/operator.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ _T_co = TypeVar("_T_co", covariant=True)
6161
_T1 = TypeVar("_T1")
6262
_T2 = TypeVar("_T2")
6363
_Ts = TypeVarTuple("_Ts")
64-
_P = ParamSpec("_P", default=...)
64+
_P = ParamSpec("_P", default=[])
6565
_R = TypeVar("_R", default=Any)
6666

6767
__all__ = [

0 commit comments

Comments
 (0)