Check if a node is currently active in the stack -- set up and not torn down yet.
(self, node: Node)
| 513 | ] = {} |
| 514 | |
| 515 | def is_node_active(self, node: Node) -> bool: |
| 516 | """Check if a node is currently active in the stack -- set up and not |
| 517 | torn down yet.""" |
| 518 | return node in self.stack |
| 519 | |
| 520 | def setup(self, item: Item) -> None: |
| 521 | """Setup objects along the collector chain to the item.""" |
no outgoing calls
no test coverage detected