(self, container)
| 2765 | # observe with names=custom container with iter, contains |
| 2766 | class MyContainer: |
| 2767 | def __init__(self, container): |
| 2768 | self.container = container |
| 2769 | |
| 2770 | def __iter__(self): |
| 2771 | return iter(self.container) |
nothing calls this directly
no outgoing calls
no test coverage detected