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
The send_message method within the SimpleUDPClient class currently expects a value parameter of type ArgValue. However, the internal logic handles it as both a single argument and a list of arguments, leading to potential confusion and inconsistencies.
The
send_message
method within theSimpleUDPClient
class currently expects avalue
parameter of typeArgValue
. However, the internal logic handles it as both a single argument and a list of arguments, leading to potential confusion and inconsistencies.Proposed Improvement:
Change the type annotation for
value
to a union:Simplify the ArgValue:
Additional Notes:
value
parameter.The text was updated successfully, but these errors were encountered: