refactor: Remove unused variable in find_block_lines function

This commit is contained in:
Paul Gauthier (aider) 2025-04-20 11:06:20 -07:00
parent 48ac1de8d3
commit 506c3c928e

View file

@ -36,7 +36,7 @@ def find_block_lines(lines, key_to_remove):
start_line_idx = i # Start from the key definition line start_line_idx = i # Start from the key definition line
break break
else: else:
potential_start = -1 # False alarm # False alarm, the line after the key wasn't '{'
break break
if start_line_idx != -1: if start_line_idx != -1:
break break