We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54d1d50 commit 6971c85Copy full SHA for 6971c85
1 file changed
archipy/models/dtos/base_protobuf_dto.py
@@ -24,7 +24,7 @@ class BaseProtobufDTO(BaseDTO):
24
def __init__(self, *args: Any, **kwargs: Any) -> None:
25
# Add a check at runtime when someone tries to use the class
26
if not PROTOBUF_AVAILABLE:
27
- raise RuntimeError("The 'protobuf' extra is not installed. ")
+ raise RuntimeError("The 'grpc' extra is not installed.\n run `uv add 'archipy[grpc]'` to install.")
28
super().__init__(*args, **kwargs)
29
30
@classmethod
0 commit comments