Skip to content
This repository has been archived by the owner on Sep 21, 2023. It is now read-only.

docs: fix docstring formatting #107

Merged
merged 2 commits into from Oct 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -275,10 +275,11 @@ async def collect_user_event(
}

service ResourceService {
rpc GetResource(GetResourceRequest) returns
(google.api.HttpBody); rpc
UpdateResource(google.api.HttpBody) returns
(google.protobuf.Empty);
rpc GetResource(GetResourceRequest)
returns (google.api.HttpBody);

rpc UpdateResource(google.api.HttpBody)
returns (google.protobuf.Empty);

}

Expand Down
9 changes: 5 additions & 4 deletions google/cloud/retail_v2/services/user_event_service/client.py
Expand Up @@ -482,10 +482,11 @@ def collect_user_event(
}

service ResourceService {
rpc GetResource(GetResourceRequest) returns
(google.api.HttpBody); rpc
UpdateResource(google.api.HttpBody) returns
(google.protobuf.Empty);
rpc GetResource(GetResourceRequest)
returns (google.api.HttpBody);

rpc UpdateResource(google.api.HttpBody)
returns (google.protobuf.Empty);

}

Expand Down