Skip to content

Commit ac5dd61

Browse files
committed
fix: forgot to add arc_descriptions to Python filereporter
1 parent 9cc8fd0 commit ac5dd61

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

coverage/python.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,6 +227,13 @@ def missing_arc_description(
227227
) -> str:
228228
return self.parser.missing_arc_description(start, end)
229229

230+
def arc_description(
231+
self,
232+
start: TLineNo,
233+
end: TLineNo
234+
) -> str:
235+
return self.parser.arc_description(start, end)
236+
230237
def source(self) -> str:
231238
if self._source is None:
232239
self._source = get_python_source(self.filename)

0 commit comments

Comments
 (0)