We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fb2aec commit f8ea1c1Copy full SHA for f8ea1c1
astroid/rebuilder.py
@@ -260,8 +260,6 @@ def _find_orelse_keyword(
260
# pylint: disable-next=unsubscriptable-object
261
for index, line in enumerate(self._data[start - 1 : node.lineno : -1]):
262
if line.lstrip().startswith("else"):
263
- # if start - index == 37:
264
- # breakpoint()
265
return start - index, line.index("else")
266
if line.lstrip().startswith("elif"):
267
return start - index, line.index("elif")
0 commit comments