Skip to content
Snippets Groups Projects
Commit 6e677403 authored by Erik Johnston's avatar Erik Johnston
Browse files

Clarify docstring

parent 1de28183
No related branches found
No related tags found
No related merge requests found
...@@ -88,6 +88,10 @@ class ObservableDeferred(object): ...@@ -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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment