Skip to content

Commit

Permalink
Black fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mat authored and dbrattli committed Mar 4, 2023
1 parent 9ee7f19 commit af1663d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
1 change: 0 additions & 1 deletion reactivex/operators/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
Observable,
abc,
compose,
just,
typing,
)
from reactivex.internal.basic import identity
Expand Down
6 changes: 3 additions & 3 deletions tests/test_observable/test_switchmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,9 +174,9 @@ def test_switch_map_default_mapper(self):
xs = hot(
" ---a---b------c-----",
{
"a": cold(" --1--2"),
"b": cold(" --1-2-3-4-5|"),
"c": cold(" --1--2"),
"a": cold(" --1--2", None, None),
"b": cold(" --1-2-3-4-5|", None, None),
"c": cold(" --1--2", None, None),
},
None,
)
Expand Down
8 changes: 4 additions & 4 deletions tests/test_observable/test_switchmapindexed.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from reactivex import interval
from reactivex import operators as ops
from reactivex.testing import ReactiveTest, TestScheduler
from reactivex.testing.subscription import Subscription
from reactivex.testing.marbles import marbles_testing
from reactivex.testing.subscription import Subscription

on_next = ReactiveTest.on_next
on_completed = ReactiveTest.on_completed
Expand Down Expand Up @@ -174,9 +174,9 @@ def test_switch_map_default_mapper(self):
xs = hot(
" ---a---b------c-----",
{
"a": cold(" --1--2"),
"b": cold(" --1-2-3-4-5|"),
"c": cold(" --1--2"),
"a": cold(" --1--2", None, None),
"b": cold(" --1-2-3-4-5|", None, None),
"c": cold(" --1--2", None, None),
},
None,
)
Expand Down

0 comments on commit af1663d

Please sign in to comment.