You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've done some experiments with providers.Aggregate where you get a Provider[Dict], which is different from what I want. Also it was very difficult (maybe even impossible) to get pyright to stop throwing errors. Finally the cleanest solution I have a the moment is just keeper the list provider i.e.:
Hi, thanks for providing this library, I really like it!
Could you tell me if there is a way to create
List[Provider[X]]
fromProvider[List[X]]
?I call this operation
InsideOut
.def InsideOut(Provider[List[X]]) -> List[Provider[X]]: ...
I've done some experiments with providers.Aggregate where you get a
Provider[Dict]
, which is different from what I want. Also it was very difficult (maybe even impossible) to get pyright to stop throwing errors. Finally the cleanest solution I have a the moment is just keeper the list provider i.e.:This works but I feel the first way would be cleaner.
Thanks,
The text was updated successfully, but these errors were encountered: