Skip to content

Commit a27b249

Browse files
committed
fix incorrect indentation
1 parent 335c16d commit a27b249

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

pythonFiles/PythonTools/visualstudio_py_debugger.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -496,10 +496,10 @@ def is_handled(self, thread, ex_type, ex_value, trace):
496496
return False
497497

498498
if trace.tb_next is not None:
499-
if should_send_frame(trace.tb_next.tb_frame) and should_debug_code(trace.tb_next.tb_frame.f_code):
500-
# don't break if this is not the top of the traceback,
501-
# unless the previous frame was not debuggable
502-
return True
499+
if should_send_frame(trace.tb_next.tb_frame) and should_debug_code(trace.tb_next.tb_frame.f_code):
500+
# don't break if this is not the top of the traceback,
501+
# unless the previous frame was not debuggable
502+
return True
503503

504504
cur_frame = trace.tb_frame
505505

0 commit comments

Comments
 (0)