Skip to content

Commit d0db85b

Browse files
committed
wip
1 parent 0f3b227 commit d0db85b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

coverage/parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -715,11 +715,11 @@ def _code_object__FunctionDef(self, node: ast.FunctionDef) -> None:
715715

716716
def _code_object__ClassDef(self, node: ast.ClassDef) -> None:
717717
start = self.line_for_node(node)
718-
exits = self.process_body(node.body)#, from_start=ArcStart(start))
718+
exits = self.process_body(node.body)
719719
for xit in exits:
720720
self.add_arc(
721721
xit.lineno, -start, xit.cause,
722-
f"didn't exit the body of class {node.name!r}",
722+
f"didn't exit class {node.name!r}",
723723
)
724724

725725
def add_arc(

0 commit comments

Comments
 (0)