Sets the point at which we will insert the graph.
(self, n: Optional[fx.Node] = None)
| 42 | return self._graph.erase_node(to_erase) |
| 43 | |
| 44 | def inserting_before(self, n: Optional[fx.Node] = None) -> fx.graph._InsertPoint: |
| 45 | """ |
| 46 | Sets the point at which we will insert the graph. |
| 47 | """ |
| 48 | return self._graph.inserting_before(n) |
| 49 | |
| 50 | # pyre-ignore |
| 51 | def get_attr(self, qualified_name: str, type_expr: Optional[Any] = None) -> fx.Node: |
no outgoing calls