@@ -30,7 +30,7 @@ def describe_circle(
30
30
circle_did : str ,
31
31
headers : typing .Optional [common_pb2 .Headers ] = None
32
32
) -> circle_pb2 .DescribeCircleResponse :
33
- """Describes the circle with the given DID, listing its location, properties, and feeds
33
+ """Describes the circle with the given DID, listing its properties
34
34
35
35
Args:
36
36
circle_did: Decentralized Identifier uniquely specifying the circle
@@ -42,7 +42,7 @@ def describe_circle(
42
42
req = circle_pb2 .DescribeCircleRequest (
43
43
headers = headers or create_headers (),
44
44
args = circle_pb2 .DescribeCircleRequest .Arguments (
45
- circleId = common_pb2 .CircleID (id = circle_did )),
45
+ circleId = circle_pb2 .CircleID (id = circle_did )),
46
46
)
47
47
return self .stub .DescribeCircle (req )
48
48
@@ -62,7 +62,7 @@ def delete_circle(
62
62
63
63
req = circle_pb2 .DeleteCircleRequest (
64
64
headers = headers or create_headers (),
65
- args = circle_pb2 .DeleteCircleRequest .Arguments (circleId = common_pb2 .CircleID (id = circle_did )))
65
+ args = circle_pb2 .DeleteCircleRequest .Arguments (circleId = circle_pb2 .CircleID (id = circle_did )))
66
66
return self .stub .DeleteCircle (req )
67
67
68
68
def list_circles (self ,
@@ -107,7 +107,7 @@ def upsert_circle(
107
107
req = circle_pb2 .UpsertCircleRequest (
108
108
headers = headers or create_headers (),
109
109
payload = circle_pb2 .UpsertCircleRequest .Payload (
110
- circleId = common_pb2 .CircleID (id = circle_did ),
110
+ circleId = circle_pb2 .CircleID (id = circle_did ),
111
111
properties = properties ,
112
112
)
113
113
)
0 commit comments