Skip to content

Commit

Permalink
Revert "Remove reference to MessageMapContainer"
Browse files Browse the repository at this point in the history
  • Loading branch information
gtopper committed Oct 30, 2024
1 parent 312121d commit 3633c0b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions clients/py/v3io_frames/pbutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,11 @@ def pb2py(obj):
if isinstance(obj, pb_list_types):
return [pb2py(v) for v in obj]

if isinstance(obj, cpp_message._message.MessageMapContainer):
return {
key: pb2py(value) for key, value in obj.items()
}

return obj


Expand Down

0 comments on commit 3633c0b

Please sign in to comment.