A no-op import hook for when rewriting is disabled.
| 111 | |
| 112 | |
| 113 | class DummyRewriteHook: |
| 114 | """A no-op import hook for when rewriting is disabled.""" |
| 115 | |
| 116 | def mark_rewrite(self, *names: str) -> None: |
| 117 | pass |
| 118 | |
| 119 | |
| 120 | class AssertionState: |
no outgoing calls
no test coverage detected