We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab38ad4 commit 24b3728Copy full SHA for 24b3728
challenges/extreme-self-casting/solution.py
@@ -14,7 +14,7 @@
14
15
class Fn(Generic[VnCallable]):
16
def __init__(self, f: VnCallable) -> None:
17
- ...
+ self.f = f
18
19
def into_callable(self: "Fn[Callable[P, R]]") -> Callable[Concatenate[Any, P], R]:
20
...
0 commit comments