(self, node)
| 1383 | self.check_assign_targets(node) |
| 1384 | |
| 1385 | def visit_AugAssign(self, node): |
| 1386 | self.check_assign_target(node) |
| 1387 | |
| 1388 | def check_assign_targets(self, node): |
| 1389 | for target in node.targets: |
nothing calls this directly
no test coverage detected