Skip to content
This repository has been archived by the owner on Feb 22, 2020. It is now read-only.

Commit

Permalink
fix(client): rename stub to _stub
Browse files Browse the repository at this point in the history
  • Loading branch information
hanhxiao committed Sep 11, 2019
1 parent 235d901 commit 21c3a8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gnes/client/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def __init__(self, args):
}.items(),
)
grpc.channel_ready_future(self._channel).result()
self.stub = gnes_pb2_grpc.GnesRPCStub(self._channel)
self._stub = gnes_pb2_grpc.GnesRPCStub(self._channel)

def send_request(self, request):
raise NotImplementedError
Expand Down

0 comments on commit 21c3a8a

Please sign in to comment.