(self, executable: str)
| 70 | |
| 71 | class PasteHelper: |
| 72 | def __init__(self, executable: str) -> None: |
| 73 | self.executable = executable |
| 74 | |
| 75 | def paste(self, s: str) -> tuple[str, None]: |
| 76 | """Call out to helper program for pastebin upload.""" |
nothing calls this directly
no outgoing calls
no test coverage detected