File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 93
93
unpack_infer ,
94
94
)
95
95
from astroid .nodes .scoped_nodes import (
96
+ SYNTHETIC_ROOT ,
96
97
AsyncFunctionDef ,
97
98
ClassDef ,
98
99
ComprehensionScope ,
103
104
ListComp ,
104
105
LocalsDictNodeNG ,
105
106
Module ,
106
- SYNTHETIC_ROOT ,
107
107
SetComp ,
108
108
builtin_lookup ,
109
109
function_to_method ,
Original file line number Diff line number Diff line change 11
11
12
12
from astroid .nodes .scoped_nodes .mixin import ComprehensionScope , LocalsDictNodeNG
13
13
from astroid .nodes .scoped_nodes .scoped_nodes import (
14
+ SYNTHETIC_ROOT ,
14
15
AsyncFunctionDef ,
15
16
ClassDef ,
16
17
DictComp ,
19
20
Lambda ,
20
21
ListComp ,
21
22
Module ,
22
- SYNTHETIC_ROOT ,
23
23
SetComp ,
24
24
_is_metaclass ,
25
25
function_to_method ,
Original file line number Diff line number Diff line change 45
45
Tuple ,
46
46
)
47
47
from astroid .nodes .scoped_nodes import (
48
+ SYNTHETIC_ROOT ,
48
49
ClassDef ,
49
50
FunctionDef ,
50
51
GeneratorExp ,
51
52
Module ,
52
- SYNTHETIC_ROOT ,
53
53
)
54
54
from tests .testdata .python3 .recursion_error import LONG_CHAINED_METHOD_CALL
55
55
You can’t perform that action at this time.
0 commit comments