Skip to content

Commit

Permalink
Fix docstring (bind is not chainable)
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexandreDecan committed Aug 17, 2018
1 parent 69b54de commit 0b6de26
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion sismic/interpreter/default.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,6 @@ def bind(self, interpreter_or_callable: Union['Interpreter', Callable[[Event], A
This is, if *i1* and *i2* are interpreters, *i1.bind(i2)* is equivalent to *i1.bind(i2.queue)*.
:param interpreter_or_callable: interpreter or callable to bind
:return: *self* so it can be chained
"""
if isinstance(interpreter_or_callable, Interpreter):
self._bound.append(interpreter_or_callable.queue)
Expand Down

0 comments on commit 0b6de26

Please sign in to comment.