Skip to content

Commit

Permalink
Correct line length linting issue.
Browse files Browse the repository at this point in the history
  • Loading branch information
freakboy3742 authored and nedbat committed Jan 26, 2023
1 parent 2f2a603 commit b4764fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion coverage/pytracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,12 @@ def _trace(
self.data_stack.pop()
)
except IndexError:
self.log("Empty stack!", frame.f_code.co_filename, frame.f_lineno, frame.f_code.co_name)
self.log(
"Empty stack!",
frame.f_code.co_filename,
frame.f_lineno,
frame.f_code.co_name
)
return None

# if event != 'call' and frame.f_code.co_filename != self.cur_file_name:
Expand Down

0 comments on commit b4764fa

Please sign in to comment.