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

Commit

Permalink
fix(client): use StreamingClient as the parent class of CLIClient
Browse files Browse the repository at this point in the history
  • Loading branch information
raccoonliukai committed Sep 10, 2019
1 parent a599982 commit a1aed8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnes/client/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@
from termcolor import colored

from ..proto import RequestGenerator
from .grpc import StreamingSyncClient
from .grpc import StreamingClient


class CLIClient(StreamingSyncClient):
class CLIClient(StreamingClient):
def __init__(self, args):
super().__init__(args)
self.start()
Expand Down

0 comments on commit a1aed8f

Please sign in to comment.