Skip to content

Commit 7ba4547

Browse files
committed
Update docstrings
1 parent 4608fe4 commit 7ba4547

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

astroid/nodes/node_classes.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3995,10 +3995,10 @@ def __init__(
39953995
"""The contents of the ``else`` block."""
39963996

39973997
self.orelse_lineno: Optional[int] = None
3998-
"""The line number of the ``else`` or ``elif`` keyword."""
3998+
"""The line number of the ``else`` keyword."""
39993999

40004000
self.orelse_col_offset: Optional[int] = None
4001-
"""The column offset of the ``else`` or ``elif`` keyword."""
4001+
"""The column offset of the ``else`` keyword."""
40024002

40034003
super().__init__(
40044004
lineno=lineno,
@@ -4372,10 +4372,10 @@ def __init__(
43724372
"""The contents of the ``else`` block."""
43734373

43744374
self.orelse_lineno: Optional[int] = None
4375-
"""The line number of the ``else`` or ``elif`` keyword."""
4375+
"""The line number of the ``else`` keyword."""
43764376

43774377
self.orelse_col_offset: Optional[int] = None
4378-
"""The column offset of the ``else`` or ``elif`` keyword."""
4378+
"""The column offset of the ``else`` keyword."""
43794379

43804380
super().__init__(
43814381
lineno=lineno,

0 commit comments

Comments
 (0)