File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -24,25 +24,26 @@ def __init__(
24
24
self ,
25
25
input_file : Optional [Union [IOBase , str , int ]] = None ,
26
26
output_file : Optional [Union [IOBase , str , int ]] = None ,
27
- data_id : Optional [ int ] = None ,
27
+ * ,
28
28
disable_output : bool = False ,
29
29
make_dirs : bool = False ,
30
- ):
30
+ ) -> None :
31
31
...
32
32
33
33
@overload
34
34
def __init__ (
35
35
self ,
36
+ * ,
36
37
data_id : Optional [int ] = None ,
37
38
file_prefix : Optional [str ] = None ,
38
39
input_suffix : str = ".in" ,
39
40
output_suffix : str = ".out" ,
40
41
disable_output : bool = False ,
41
42
make_dirs : bool = False ,
42
- ):
43
+ ) -> None :
43
44
...
44
45
45
- def __init__ ( # type: ignore
46
+ def __init__ (
46
47
self ,
47
48
input_file : Optional [Union [IOBase , str , int ]] = None ,
48
49
output_file : Optional [Union [IOBase , str , int ]] = None ,
You can’t perform that action at this time.
0 commit comments