Skip to content

Commit b5d6652

Browse files
authored
Merge pull request swiftlang#32157 from compnerd/gyb-lint
gyb: clean up some linter warnings
2 parents d3a5be4 + 3126a4e commit b5d6652

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

utils/gyb_syntax_support/__init__.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,17 @@
11
import textwrap
2+
from . import Classification # noqa: I201
3+
from . import Token
24
from .AttributeNodes import ATTRIBUTE_NODES # noqa: I201
35
from .AvailabilityNodes import AVAILABILITY_NODES # noqa: I201
4-
from . import Classification # noqa: I201
56
from .CommonNodes import COMMON_NODES # noqa: I201
67
from .DeclNodes import DECL_NODES # noqa: I201
78
from .ExprNodes import EXPR_NODES # noqa: I201
89
from .GenericNodes import GENERIC_NODES # noqa: I201
9-
10-
from . import Token
11-
1210
from .NodeSerializationCodes import SYNTAX_NODE_SERIALIZATION_CODES, \
1311
get_serialization_code, \
1412
verify_syntax_node_serialization_codes
15-
1613
from .PatternNodes import PATTERN_NODES # noqa: I201
1714
from .StmtNodes import STMT_NODES # noqa: I201
18-
1915
from .Trivia import TRIVIAS # noqa: I201
2016
from .TypeNodes import TYPE_NODES # noqa: I201
2117

0 commit comments

Comments
 (0)