Could you please add a new function to the notifier class as such:
def add_listener(self, listener):
"""Add new Listener to be notified
:param listener: new listener object to be added to the list to be notified
"""
self.listeners.append(listener)
Thanks
Could you please add a new function to the notifier class as such:
Thanks