Skip to content

Commit b8482cc

Browse files
Drop type_url_prefix from pack
Doesn't seem necessary.
1 parent 081b4aa commit b8482cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conformance/test/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
# TODO: Use google.protobuf.any.pack on upgrade to protobuf==6.
5252
def pack(msg: "Message") -> Any:
5353
any_msg = Any()
54-
any_msg.Pack(msg, type_url_prefix="'type.googleapis.com/'")
54+
any_msg.Pack(msg)
5555
return any_msg
5656

5757

0 commit comments

Comments
 (0)