Fix lint error w/ClientDummy.
This commit is contained in:
parent
0af3069839
commit
42fdead31f
|
@ -4,7 +4,7 @@ def test():
|
||||||
for cmd, expected_response in sample_conversation():
|
for cmd, expected_response in sample_conversation():
|
||||||
message = {'content': cmd, 'subject': 'foo',
|
message = {'content': cmd, 'subject': 'foo',
|
||||||
'display_recipient': 'bar'}
|
'display_recipient': 'bar'}
|
||||||
class ClientDummy:
|
class ClientDummy(object):
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.output = ''
|
self.output = ''
|
||||||
def send_message(self, params):
|
def send_message(self, params):
|
||||||
|
|
Loading…
Reference in a new issue