Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2dd982b

Browse files
committedMar 24, 2024·
fix.
1 parent 44ed5f0 commit 2dd982b

File tree

3 files changed

+14
-7
lines changed

3 files changed

+14
-7
lines changed
 

‎pyproject.toml

-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,6 @@ unsafe-fixes = true
9393

9494
[tool.ruff.lint]
9595
extend-ignore = [
96-
"TCH", # ignore non-guarded type imports.
9796
# Others.
9897
"ANN101", # type annotating self
9998
"ANN102", # type annotating cls

‎src/pytask_parallel/execute.py

+9-5
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,8 @@
66
import sys
77
import time
88
import warnings
9-
from concurrent.futures import Future
109
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
1411
from typing import Any
1512
from typing import Callable
1613

@@ -35,12 +32,19 @@
3532
from pytask.tree_util import tree_leaves
3633
from pytask.tree_util import tree_map
3734
from pytask.tree_util import tree_structure
38-
from rich.console import ConsoleOptions
3935
from rich.traceback import Traceback
4036

4137
from pytask_parallel.backends import PARALLEL_BACKENDS
4238
from pytask_parallel.backends import ParallelBackend
4339

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+
4448

4549
@hookimpl
4650
def pytask_post_parse(config: dict[str, Any]) -> None:

‎src/pytask_parallel/plugin.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,18 @@
22

33
from __future__ import annotations
44

5-
from pluggy import PluginManager
5+
from typing import TYPE_CHECKING
6+
67
from pytask import hookimpl
78

89
from pytask_parallel import build
910
from pytask_parallel import config
1011
from pytask_parallel import execute
1112
from pytask_parallel import logging
1213

14+
if TYPE_CHECKING:
15+
from pluggy import PluginManager
16+
1317

1418
@hookimpl
1519
def pytask_add_hooks(pm: PluginManager) -> None:

0 commit comments

Comments
 (0)
Please sign in to comment.