mirror of
https://github.com/davidhalter/parso.git
synced 2026-02-12 21:22:01 +08:00
Fix another typo.
Delete accidentally repeated `None.`
This commit is contained in:
@@ -55,7 +55,6 @@ class NodeOrLeaf(object):
|
|||||||
Returns the node immediately preceding this node in this parent's
|
Returns the node immediately preceding this node in this parent's
|
||||||
children list. If this node does not have a previous sibling, it is
|
children list. If this node does not have a previous sibling, it is
|
||||||
None.
|
None.
|
||||||
None.
|
|
||||||
"""
|
"""
|
||||||
# Can't use index(); we need to test by identity
|
# Can't use index(); we need to test by identity
|
||||||
for i, child in enumerate(self.parent.children):
|
for i, child in enumerate(self.parent.children):
|
||||||
|
|||||||
Reference in New Issue
Block a user