Fix from_dict() in the presence of optional datetime fields. (#329)

This commit is contained in:
Eitan Mosenkis
2022-02-03 11:00:56 +02:00
committed by GitHub
parent eeddc844a5
commit 8c727d904f
4 changed files with 9 additions and 5 deletions

View File

@@ -1,5 +1,7 @@
syntax = "proto3";
import "google/protobuf/timestamp.proto";
message InnerTest {
string test = 1;
}
@@ -13,6 +15,7 @@ message Test {
optional TestEnum test6 = 6;
optional uint64 test7 = 7;
optional float test8 = 8;
optional google.protobuf.Timestamp test9 = 9;
}
enum TestEnum {