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
Triggered by a mailing list post - Group is still very early days but it can't currently generate "useful" Connections with arbitrary kwargs, such as connect_kwargs. It's either Connection-first-posarg strings, or full on, manually generated Connections (to .from_connections).
The latter may still be somewhat useful (you still get a group object to pass around more easily, and its methods still yield grouped results, etc) but it feels pretty silly and is certainly extra boilerplate (list comprehensions, Connection constructors, etc).
We should add **kwargs to Group.__init__ and pass it into the Connection constructors within, at the very least. Then do the usual stripping-out of any Group-specific kwargs as we grow them.
The text was updated successfully, but these errors were encountered:
Triggered by a mailing list post - Group is still very early days but it can't currently generate "useful" Connections with arbitrary kwargs, such as
connect_kwargs
. It's either Connection-first-posarg strings, or full on, manually generated Connections (to.from_connections
).The latter may still be somewhat useful (you still get a group object to pass around more easily, and its methods still yield grouped results, etc) but it feels pretty silly and is certainly extra boilerplate (list comprehensions, Connection constructors, etc).
We should add
**kwargs
toGroup.__init__
and pass it into theConnection
constructors within, at the very least. Then do the usual stripping-out of any Group-specific kwargs as we grow them.The text was updated successfully, but these errors were encountered: