Skip to content

Commit 607370d

Browse files
freakboy3742nedbat
authored andcommitted
Correct line length linting issue.
1 parent 9837f70 commit 607370d

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

coverage/pytracer.py

+6-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,12 @@ def _trace(
142142
self.data_stack.pop()
143143
)
144144
except IndexError:
145-
self.log("Empty stack!", frame.f_code.co_filename, frame.f_lineno, frame.f_code.co_name)
145+
self.log(
146+
"Empty stack!",
147+
frame.f_code.co_filename,
148+
frame.f_lineno,
149+
frame.f_code.co_name
150+
)
146151
return None
147152

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

0 commit comments

Comments
 (0)