Fixed interface send with no value
This commit is contained in:
parent
a3d42b82b3
commit
17e719876e
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
class MessageInterface:
|
class MessageInterface:
|
||||||
def send(self, message, value):
|
def send(self, message, value=None):
|
||||||
"""Implement this class to process updates and messages from the core"""
|
"""Implement this class to process updates and messages from the core"""
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in New Issue