File tree Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Expand file tree Collapse file tree 2 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -47,9 +47,9 @@ class Traceback:
47
47
48
48
show_locals : ClassVar [bool ] = False
49
49
suppress : ClassVar [tuple [Path , ...]] = (
50
- # _PLUGGY_DIRECTORY,
51
- # TREE_UTIL_LIB_DIRECTORY,
52
- # _PYTASK_DIRECTORY,
50
+ _PLUGGY_DIRECTORY ,
51
+ TREE_UTIL_LIB_DIRECTORY ,
52
+ _PYTASK_DIRECTORY ,
53
53
)
54
54
55
55
def __rich_console__ (
Original file line number Diff line number Diff line change 6
6
from _pytask .build import build
7
7
from _pytask .capture_utils import CaptureMethod
8
8
from _pytask .capture_utils import ShowCapture
9
- from _pytask .cli import cli
10
9
from _pytask .click import ColoredCommand
11
10
from _pytask .click import ColoredGroup
12
11
from _pytask .click import EnumChoice
74
73
from _pytask .warnings_utils import warning_record_to_str
75
74
from _pytask .warnings_utils import WarningReport
76
75
76
+
77
+ # This import must come last, otherwise a circular import occurs.
78
+ from _pytask .cli import cli # noreorder
79
+
80
+
77
81
__all__ = [
78
82
"BaseTable" ,
79
83
"CaptureMethod" ,
You can’t perform that action at this time.
0 commit comments