(self, footnotes: FootnoteExtension)
| 420 | """ Build and append footnote div to end of document. """ |
| 421 | |
| 422 | def __init__(self, footnotes: FootnoteExtension): |
| 423 | self.footnotes = footnotes |
| 424 | |
| 425 | def run(self, root: etree.Element) -> None: |
| 426 | footnotesDiv = self.footnotes.makeFootnotesDiv(root) |
nothing calls this directly
no outgoing calls
no test coverage detected