File tree 3 files changed +14
-7
lines changed
3 files changed +14
-7
lines changed Original file line number Diff line number Diff line change @@ -93,7 +93,6 @@ unsafe-fixes = true
93
93
94
94
[tool .ruff .lint ]
95
95
extend-ignore = [
96
- " TCH" , # ignore non-guarded type imports.
97
96
# Others.
98
97
" ANN101" , # type annotating self
99
98
" ANN102" , # type annotating cls
Original file line number Diff line number Diff line change 6
6
import sys
7
7
import time
8
8
import warnings
9
- from concurrent .futures import Future
10
9
from functools import partial
11
- from pathlib import Path
12
- from types import ModuleType
13
- from types import TracebackType
10
+ from typing import TYPE_CHECKING
14
11
from typing import Any
15
12
from typing import Callable
16
13
35
32
from pytask .tree_util import tree_leaves
36
33
from pytask .tree_util import tree_map
37
34
from pytask .tree_util import tree_structure
38
- from rich .console import ConsoleOptions
39
35
from rich .traceback import Traceback
40
36
41
37
from pytask_parallel .backends import PARALLEL_BACKENDS
42
38
from pytask_parallel .backends import ParallelBackend
43
39
40
+ if TYPE_CHECKING :
41
+ from concurrent .futures import Future
42
+ from pathlib import Path
43
+ from types import ModuleType
44
+ from types import TracebackType
45
+
46
+ from rich .console import ConsoleOptions
47
+
44
48
45
49
@hookimpl
46
50
def pytask_post_parse (config : dict [str , Any ]) -> None :
Original file line number Diff line number Diff line change 2
2
3
3
from __future__ import annotations
4
4
5
- from pluggy import PluginManager
5
+ from typing import TYPE_CHECKING
6
+
6
7
from pytask import hookimpl
7
8
8
9
from pytask_parallel import build
9
10
from pytask_parallel import config
10
11
from pytask_parallel import execute
11
12
from pytask_parallel import logging
12
13
14
+ if TYPE_CHECKING :
15
+ from pluggy import PluginManager
16
+
13
17
14
18
@hookimpl
15
19
def pytask_add_hooks (pm : PluginManager ) -> None :
You can’t perform that action at this time.
0 commit comments