Skip to content

Commit ae6c1d8

Browse files
committed
delint
Signed-off-by: Sylvain Hellegouarch <[email protected]>
1 parent 4417370 commit ae6c1d8

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

tests/fixtures/controls/dummy_sums.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
from chaoslib.types import Experiment, Journal
44

55

6-
def before_experiment_control(context: Experiment,
7-
values: Sequence[int]) -> None:
6+
def before_experiment_control(context: Experiment, values: Sequence[int]) -> None:
87
context["result_after"] = 0
98

109

11-
def after_experiment_control(context: Experiment, state: Journal,
12-
values: Sequence[int]) -> None:
10+
def after_experiment_control(
11+
context: Experiment, state: Journal, values: Sequence[int]
12+
) -> None:
1313
context["result_after"] += sum(values)

tests/fixtures/experiments.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -902,7 +902,7 @@
902902
"name": "lc1",
903903
"provider": {
904904
"type": "python",
905-
"module": "fixtures.controls.dummy_sums",
905+
"module": "fixtures.controls.dummy_sums",
906906
"arguments": {"values": [2, 3]},
907907
},
908908
}
@@ -918,7 +918,7 @@
918918
"name": "tc1",
919919
"provider": {
920920
"type": "python",
921-
"module": "fixtures.controls.dummy_sums",
921+
"module": "fixtures.controls.dummy_sums",
922922
"arguments": {"values": [1, 2]},
923923
},
924924
},
@@ -927,15 +927,15 @@
927927
"automatic": False,
928928
"provider": {
929929
"type": "python",
930-
"module": "fixtures.controls.dummy_sums",
930+
"module": "fixtures.controls.dummy_sums",
931931
"arguments": {"values": [3, 4]},
932932
},
933933
},
934934
{
935935
"name": "tc3",
936936
"provider": {
937937
"type": "python",
938-
"module": "fixtures.controls.dummy_sums",
938+
"module": "fixtures.controls.dummy_sums",
939939
"arguments": {"values": [5, 6]},
940940
},
941941
},

0 commit comments

Comments
 (0)