Add text to generated stub.
(self, string: str)
| 709 | return "" |
| 710 | |
| 711 | def add(self, string: str) -> None: |
| 712 | """Add text to generated stub.""" |
| 713 | self._output.append(string) |
| 714 | |
| 715 | def is_top_level(self) -> bool: |
| 716 | """Are we processing the top level of a file?""" |