(self, url: str, expiry: str)
| 42 | |
| 43 | class PastePinnwand: |
| 44 | def __init__(self, url: str, expiry: str) -> None: |
| 45 | self.url = url |
| 46 | self.expiry = expiry |
| 47 | |
| 48 | def paste(self, s: str) -> tuple[str, str]: |
| 49 | """Upload to pastebin via json interface.""" |
nothing calls this directly
no outgoing calls
no test coverage detected