Return all objects in chain. Handy if the objects are not callable.
(self)
| 125 | self.chain.sort(key=lambda x: x[0]) |
| 126 | |
| 127 | def __iter__(self): |
| 128 | """ Return all objects in chain. |
| 129 | |
| 130 | Handy if the objects are not callable. |
| 131 | """ |
| 132 | return iter(self.chain) |
| 133 | |
| 134 | |
| 135 | def shutdown_hook(self): |
nothing calls this directly
no outgoing calls
no test coverage detected