(self, s: AssignmentStmt)
| 21 | self.ignore_file = False |
| 22 | |
| 23 | def visit_assignment_stmt(self, s: AssignmentStmt) -> None: |
| 24 | if s.type or ignore_node(s.rvalue): |
| 25 | for lvalue in s.lvalues: |
| 26 | if isinstance(lvalue, NameExpr): |
| 27 | self.nodes.add(lvalue) |
| 28 | super().visit_assignment_stmt(s) |
| 29 | |
| 30 | def visit_name_expr(self, n: NameExpr) -> None: |
| 31 | if self.ignore_file: |
nothing calls this directly
no test coverage detected