edited docstring

This commit is contained in:
tylerlaberge
2016-08-13 15:31:53 -04:00
parent aef3311f8e
commit 53d1c22687

View File

@@ -47,7 +47,6 @@ class Observable(object):
def notify(self): def notify(self):
""" """
Notify all attached Observers of the state of this Observable. Notify all attached Observers of the state of this Observable.
This should be called when this Observable's state changes.
""" """
for observer in self._observers: for observer in self._observers:
state = {k: v for k, v in self.__dict__.items() if not k.startswith('__') and not k.startswith('_')} state = {k: v for k, v in self.__dict__.items() if not k.startswith('__') and not k.startswith('_')}