Kyle Putnam
Kyle Putnam
> Wouldn't this require an explicit cast though for clients/resources? While we can generate types for the clients/resources, there's not way to automatically associate the creation of a client to...
There is a workaround but it's cumbersome: ```python from typing import TypeVar T = TypeVar('T') class assertEqual(Generic[T]): def __init__(self, expected: T): self.expected = expected def __call__(self, actual: T) -> None:...
@endrift This is due to type variance on the type arguments to `list[T]` or `dict[K, V]`. Because these are mutable containers, they have invariant type parameters. For instance, `list[int]` is...
True, it could be a limitation of mypy. It will work with pyright for certain.
Haha, sorry to throw a wrench in your spokes! Yes I can take a look at contributing that. I'll look around the repo/project next week and get my bearings.
@IrinaSouth yes exactly. @rvowles, if deleting is not permanent, and we can see (normally hidden) deleted features, that would be great. We just need a way to hide features that...