Dec. 22, 2021
5:22 p.m.
While it's not legal to use `P` in the subscript expression in your example, you can use `(...)` instead. This means "a signature that accepts any parameters". This works in conjunction with `Concatenate`. I think that addresses your use case. ```python class Foo: some_callable: SomeCallableType[(...)] ``` -Eric