File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 1
1
import os
2
- import shutil
3
2
4
3
import hail as hl
5
4
@@ -29,7 +28,7 @@ def run(self) -> None:
29
28
),
30
29
)
31
30
if rd ['is_dir' ]
32
- ]
31
+ ],
33
32
)
34
33
successful_run_dir_paths = [
35
34
run_dir_path
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ def test_too_few_successful_runs(self) -> None:
45
45
runs_path (
46
46
ReferenceGenome .GRCh38 ,
47
47
DatasetType .SNV_INDEL ,
48
- )
49
- )
48
+ ),
49
+ ),
50
50
),
51
51
7 ,
52
52
)
@@ -78,7 +78,7 @@ def test_leave_incomplete_runs(self) -> None:
78
78
Path (run_dir_path ).mkdir (parents = True , exist_ok = True )
79
79
80
80
# Force a couple of incomplete runs
81
- if run_dir not in set ([ 'manual__2024-01-13' , 'manual__2024-01-16' ]) :
81
+ if run_dir not in { 'manual__2024-01-13' , 'manual__2024-01-16' } :
82
82
Path ((run_dir_path ) / Path ('_SUCCESS' )).touch ()
83
83
84
84
worker = luigi .worker .Worker ()
@@ -96,8 +96,8 @@ def test_leave_incomplete_runs(self) -> None:
96
96
runs_path (
97
97
ReferenceGenome .GRCh38 ,
98
98
DatasetType .SNV_INDEL ,
99
- )
100
- )
99
+ ),
100
+ ),
101
101
),
102
102
12 ,
103
103
)
@@ -109,6 +109,6 @@ def test_leave_incomplete_runs(self) -> None:
109
109
DatasetType .SNV_INDEL ,
110
110
),
111
111
'manual__2024-01-05' ,
112
- )
113
- )
114
- )
112
+ ),
113
+ ),
114
+ )
You can’t perform that action at this time.
0 commit comments