Skip to content

Commit ac6c8b2

Browse files
committed
Fix pep8 violation
1 parent 8a4c3a9 commit ac6c8b2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

utils/gyb_syntax_support/Node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def __init__(self, name, kind=None, children=None,
4242

4343
# Since Syntax, and all the base kinds, are protocols, we can't
4444
# directly instantiate them or use them as concrete types.
45-
# Instead, all collection elements with a 'base' kind actually have type
46-
# Any<kind>Syntax in SwiftSyntax.
45+
# Instead, all collection elements with a 'base' kind actually have
46+
# type Any<kind>Syntax in SwiftSyntax.
4747
if self.collection_element in SYNTAX_BASE_KINDS:
4848
self.swift_collection_element_type = \
4949
'Any' + self.collection_element_type

0 commit comments

Comments
 (0)