(self, item)
| 226 | return pprint.pformat([str(i) for i in self.chain]) |
| 227 | |
| 228 | def __contains__(self, item): |
| 229 | name = _get_name(item) |
| 230 | return name in self.lookup |
| 231 | |
| 232 | async def handle_lifecycle(self, event: hooks.Hook): |
| 233 | """ |
nothing calls this directly
no test coverage detected