Skip to content

Commit 004dab2

Browse files
committed
format normalizeSelection
1 parent d416fec commit 004dab2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

pythonFiles/normalizeSelection.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -207,9 +207,6 @@ def traverse_file(wholeFileContent, start_line, end_line, was_highlighted):
207207
# add the appropriate source code line(s) to be sent to the REPL, dependent on
208208
# user is trying to send and execute single line/statement or multiple with smart selection.
209209
for top_node in ast.iter_child_nodes(parsed_file_content):
210-
# top_level_block_start_line = top_node.lineno
211-
# top_level_block_end_line = top_node.end_lineno
212-
213210
if start_line == top_node.lineno and end_line == top_node.end_lineno:
214211
should_run_top_blocks.append(top_node)
215212

0 commit comments

Comments
 (0)