protocolbuffers / protobuf

Protocol Buffers - Google's data interchange format
http://protobuf.dev
Other
65.81k stars 15.51k forks source link

Fix a python bug for text_format pretty print when Struct in Any #19312

Closed copybara-service[bot] closed 2 days ago

copybara-service[bot] commented 3 days ago

Fix a python bug for text_format pretty print when Struct in Any

Struct has a default bool function, and empty Struct returns False for bool(). Should compare with None instead of bool() when check if Struct is able to be created.