Skip to content

Commit 2079dda

Browse files
committed
Remove FindApplications.visit_Node override for coverage
1 parent 60aaf00 commit 2079dda

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

devito/ir/iet/visitors.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1143,10 +1143,6 @@ def __init__(self, cls: type[ApplicationType] = Application):
11431143
def _post_visit(self, ret):
11441144
return set(ret)
11451145

1146-
def visit_Node(self, o: Node) -> Iterator[ApplicationType]:
1147-
for i in o.children:
1148-
yield from self._visit(i)
1149-
11501146
def visit_Expression(self, o: Expression, **kwargs) -> Iterator[ApplicationType]:
11511147
yield from o.expr.find(self.match)
11521148

0 commit comments

Comments
 (0)