1
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2026-03-13 12:12:57 +01:00

fix(cli/client_utils): "__rpc__" pop from msg_results

This commit is contained in:
wyzula-jan
2024-02-26 15:30:43 +01:00
parent 644f1031f6
commit ebb36f62dd

View File

@@ -150,6 +150,7 @@ class RPCBase:
if "__rpc__" not in msg_result:
return msg_result
cls = msg_result.pop("widget_class", None)
msg_result.pop("__rpc__", None)
if not cls:
return msg_result