Skip to content

Commit af1663d

Browse files
matdbrattli
mat
authored andcommitted
Black fixes
1 parent 9ee7f19 commit af1663d

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

Diff for: reactivex/operators/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626
Observable,
2727
abc,
2828
compose,
29-
just,
3029
typing,
3130
)
3231
from reactivex.internal.basic import identity

Diff for: tests/test_observable/test_switchmap.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,9 @@ def test_switch_map_default_mapper(self):
174174
xs = hot(
175175
" ---a---b------c-----",
176176
{
177-
"a": cold(" --1--2"),
178-
"b": cold(" --1-2-3-4-5|"),
179-
"c": cold(" --1--2"),
177+
"a": cold(" --1--2", None, None),
178+
"b": cold(" --1-2-3-4-5|", None, None),
179+
"c": cold(" --1--2", None, None),
180180
},
181181
None,
182182
)

Diff for: tests/test_observable/test_switchmapindexed.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from reactivex import interval
44
from reactivex import operators as ops
55
from reactivex.testing import ReactiveTest, TestScheduler
6-
from reactivex.testing.subscription import Subscription
76
from reactivex.testing.marbles import marbles_testing
7+
from reactivex.testing.subscription import Subscription
88

99
on_next = ReactiveTest.on_next
1010
on_completed = ReactiveTest.on_completed
@@ -174,9 +174,9 @@ def test_switch_map_default_mapper(self):
174174
xs = hot(
175175
" ---a---b------c-----",
176176
{
177-
"a": cold(" --1--2"),
178-
"b": cold(" --1-2-3-4-5|"),
179-
"c": cold(" --1--2"),
177+
"a": cold(" --1--2", None, None),
178+
"b": cold(" --1-2-3-4-5|", None, None),
179+
"c": cold(" --1--2", None, None),
180180
},
181181
None,
182182
)

0 commit comments

Comments
 (0)