Skip to content

Commit

Permalink
Fix type typo in hint overload
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrattli committed May 11, 2019
1 parent c649237 commit de9f0ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rx/core/observable/observable.py
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ def pipe(self,
op4: Callable[[C], D],
op5: Callable[[D], E],
op6: Callable[[E], F],
op7: Callable[[E], G]) -> G: # pylint: disable=function-redefined, no-self-use
op7: Callable[[F], G]) -> G: # pylint: disable=function-redefined, no-self-use
... # pylint: disable=pointless-statement

# pylint: disable=function-redefined
Expand Down

0 comments on commit de9f0ec

Please sign in to comment.