File tree 2 files changed +18
-4
lines changed
2 files changed +18
-4
lines changed Original file line number Diff line number Diff line change 3
3
if sys .version_info >= (3 , 10 ):
4
4
from test .support .import_helper import (
5
5
CleanImport as CleanImport ,
6
+ )
7
+ from test .support .import_helper import (
6
8
DirsOnSysPath as DirsOnSysPath ,
7
9
)
8
10
from test .support .os_helper import (
9
11
EnvironmentVarGuard as EnvironmentVarGuard ,
12
+ )
13
+ from test .support .os_helper import (
10
14
rmtree as rmtree ,
15
+ )
16
+ from test .support .os_helper import (
11
17
skip_unless_symlink as skip_unless_symlink ,
18
+ )
19
+ from test .support .os_helper import (
12
20
unlink as unlink ,
13
21
)
14
22
else :
15
23
from test .support import (
16
24
CleanImport as CleanImport ,
25
+ )
26
+ from test .support import (
17
27
DirsOnSysPath as DirsOnSysPath ,
28
+ )
29
+ from test .support import (
18
30
EnvironmentVarGuard as EnvironmentVarGuard ,
31
+ )
32
+ from test .support import (
19
33
rmtree as rmtree ,
34
+ )
35
+ from test .support import (
20
36
skip_unless_symlink as skip_unless_symlink ,
37
+ )
38
+ from test .support import (
21
39
unlink as unlink ,
22
40
)
Original file line number Diff line number Diff line change @@ -46,10 +46,6 @@ ignore = [
46
46
" TRY400" ,
47
47
]
48
48
49
- [lint .isort ]
50
- combine-as-imports = true
51
- split-on-trailing-comma = false
52
-
53
49
[format ]
54
50
# Enable preview to get hugged parenthesis unwrapping and other nice surprises
55
51
# See https://github.com/jaraco/skeleton/pull/133#issuecomment-2239538373
You can’t perform that action at this time.
0 commit comments