Skip to content

Commit 96c2383

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cc7632f commit 96c2383

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

astroid/nodes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@
9393
unpack_infer,
9494
)
9595
from astroid.nodes.scoped_nodes import (
96+
SYNTHETIC_ROOT,
9697
AsyncFunctionDef,
9798
ClassDef,
9899
ComprehensionScope,
@@ -103,7 +104,6 @@
103104
ListComp,
104105
LocalsDictNodeNG,
105106
Module,
106-
SYNTHETIC_ROOT,
107107
SetComp,
108108
builtin_lookup,
109109
function_to_method,

astroid/nodes/scoped_nodes/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111

1212
from astroid.nodes.scoped_nodes.mixin import ComprehensionScope, LocalsDictNodeNG
1313
from astroid.nodes.scoped_nodes.scoped_nodes import (
14+
SYNTHETIC_ROOT,
1415
AsyncFunctionDef,
1516
ClassDef,
1617
DictComp,
@@ -19,7 +20,6 @@
1920
Lambda,
2021
ListComp,
2122
Module,
22-
SYNTHETIC_ROOT,
2323
SetComp,
2424
_is_metaclass,
2525
function_to_method,

tests/test_nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@
4545
Tuple,
4646
)
4747
from astroid.nodes.scoped_nodes import (
48+
SYNTHETIC_ROOT,
4849
ClassDef,
4950
FunctionDef,
5051
GeneratorExp,
5152
Module,
52-
SYNTHETIC_ROOT,
5353
)
5454
from tests.testdata.python3.recursion_error import LONG_CHAINED_METHOD_CALL
5555

0 commit comments

Comments
 (0)