Fix import loop with Pydantic (#624)

This commit is contained in:
Adrien
2024-10-15 16:33:37 +02:00
committed by GitHub
parent c2bcd31fe3
commit 6a3bbe3f25
4 changed files with 11 additions and 20 deletions

View File

@@ -26,5 +26,5 @@ import "other.proto";
// (root: Test & RootPackageMessage) <-------> (other: OtherPackageMessage)
message Test {
RootPackageMessage message = 1;
other.OtherPackageMessage other = 2;
other.OtherPackageMessage other_value = 2;
}