Fix assignment between Python protobuf Structs (#6377)
Currently, if you access a ListValue from a Struct and attempted to assign it to another Struct, you would get an exception: > s1 = spb.Struct() > s1['a'] = [1] > s2 = spb.Struct() > s2['a'] = s1['a'] ValueError: Unexpected type This fixes that case.pull/6369/head
parent
7bff8393ca
commit
de5d071f44
2 changed files with 11 additions and 2 deletions
Loading…
Reference in new issue