0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-09-27 20:19:03 +02:00

Clarify docstring

This commit is contained in:
Erik Johnston 2019-10-30 11:52:04 +00:00
parent 1de28183cb
commit 6e677403b7

View file

@ -88,6 +88,10 @@ class ObservableDeferred(object):
def observe(self) -> defer.Deferred: def observe(self) -> defer.Deferred:
"""Observe the underlying deferred. """Observe the underlying deferred.
This returns a brand new deferred that is resolved when the underlying
deferred is resolved. Interacting with the returned deferred does not
effect the underdlying deferred.
""" """
if not self._result: if not self._result:
d = defer.Deferred() d = defer.Deferred()