Skip to content

Commit 47a18ca

Browse files
document fake TypeVar
1 parent 04c0fba commit 47a18ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

asyncstdlib/_lrucache.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ def cache_discard(self, *args: Any, **kwargs: Any) -> None:
120120
# these are fake and only exist for placeholders
121121
S = TypeVar("S")
122122
S2 = TypeVar("S2")
123-
P = TypeVar("P")
123+
P = TypeVar("P") # actually a ParamSpec, see .pyi
124124
R = TypeVar("R")
125125

126126

0 commit comments

Comments
 (0)