Skip to content

Commit f8ea1c1

Browse files
authored
Update astroid/rebuilder.py
1 parent 4fb2aec commit f8ea1c1

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

astroid/rebuilder.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,8 +260,6 @@ def _find_orelse_keyword(
260260
# pylint: disable-next=unsubscriptable-object
261261
for index, line in enumerate(self._data[start - 1 : node.lineno : -1]):
262262
if line.lstrip().startswith("else"):
263-
# if start - index == 37:
264-
# breakpoint()
265263
return start - index, line.index("else")
266264
if line.lstrip().startswith("elif"):
267265
return start - index, line.index("elif")

0 commit comments

Comments
 (0)