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
message_with_options and send_with_options cannot be type checked by python static type checkers today. Type checking is starting to become a major topic in the Python realm, so it is important this is addressed
Proposal
Deprecate message_with_options and send_with_options
Motivation
message_with_options
andsend_with_options
cannot be type checked by python static type checkers today. Type checking is starting to become a major topic in the Python realm, so it is important this is addressedProposal
message_with_options
andsend_with_options
Message
So
actor.send_with_options(args=[1, 2], kwargs={"foo": 3}, max_retries=5)
becomesactor.message(1, 2, foo=3).with_options(max_retries=5).send()
The text was updated successfully, but these errors were encountered: