Skip to content

Commit

Permalink
Fix code format
Browse files Browse the repository at this point in the history
  • Loading branch information
Azureblade3808 authored and dbrattli committed Jul 2, 2022
1 parent 9ecf95a commit 4d351c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion reactivex/observable/observable.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,9 @@ def _subscribe_core(

def subscribe(
self,
on_next: Optional[Union[abc.ObserverBase[_T_out], abc.OnNext[_T_out], None]] = None,
on_next: Optional[
Union[abc.ObserverBase[_T_out], abc.OnNext[_T_out], None]
] = None,
on_error: Optional[abc.OnError] = None,
on_completed: Optional[abc.OnCompleted] = None,
*,
Expand Down

0 comments on commit 4d351c9

Please sign in to comment.