| 1676 | |
| 1677 | def writer(self, replacement: bool = False) -> dns.transaction.Transaction: |
| 1678 | class DummyTransaction: |
| 1679 | def nop(self, *args, **kw): |
| 1680 | pass |
| 1681 | |
| 1682 | def __getattr__(self, _): |
| 1683 | return self.nop |
| 1684 | |
| 1685 | return cast(dns.transaction.Transaction, DummyTransaction()) |
| 1686 |
no outgoing calls
no test coverage detected
searching dependent graphs…