Skip to content

Commit cf2eb21

Browse files
committed
Fix python indentation for real
1 parent c77da02 commit cf2eb21

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

utils/gyb_syntax_support/AttributeNodes.py

+15-15
Original file line numberDiff line numberDiff line change
@@ -112,24 +112,24 @@
112112
Child('Colon', kind='ColonToken',
113113
description='The colon separating the label and the value'),
114114
Child('StringOrDeclname', kind='Syntax', node_choices=[
115-
Child('String', kind='StringLiteralToken'),
116-
Child('Declname', kind='DeclName'),
115+
Child('String', kind='StringLiteralToken'),
116+
Child('Declname', kind='DeclName'),
117117
]),
118118
]),
119119
Node('DeclName', kind='Syntax', children=[
120-
Child('DeclBaseName', kind='Syntax', description='''
121-
The base name of the protocol\'s requirement.
122-
''',
123-
node_choices=[
124-
Child('Identifier', kind='IdentifierToken'),
125-
Child('Operator', kind='PrefixOperatorToken'),
126-
]),
127-
Child('DeclNameArguments', kind='DeclNameArguments',
128-
is_optional=True, description='''
129-
The argument labels of the protocol\'s requirement if it \
130-
is a function requirement.
131-
'''),
132-
]),
120+
Child('DeclBaseName', kind='Syntax', description='''
121+
The base name of the protocol\'s requirement.
122+
''',
123+
node_choices=[
124+
Child('Identifier', kind='IdentifierToken'),
125+
Child('Operator', kind='PrefixOperatorToken'),
126+
]),
127+
Child('DeclNameArguments', kind='DeclNameArguments',
128+
is_optional=True, description='''
129+
The argument labels of the protocol\'s requirement if it \
130+
is a function requirement.
131+
'''),
132+
]),
133133
# The argument of '@_implements(...)'
134134
# implements-attr-arguments -> simple-type-identifier ','
135135
# (identifier | operator) decl-name-arguments

0 commit comments

Comments
 (0)