Update tracer.py

This commit is contained in:
hojin915 2020-12-04 15:32:41 +09:00 committed by GitHub
parent 40340583ec
commit a811d79754
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -455,7 +455,7 @@ class Tracer:
if candidate_source_line.lstrip().startswith('def'):
# Found the def line!
# Save line_no and sorce line
# Save line_no and source line
line_no = candidate_line_no
source_line = candidate_source_line
break