Replace the entire import context with a new value.
(self, ctx: list[tuple[str, int]])
| 588 | return self.import_ctx.copy() |
| 589 | |
| 590 | def set_import_context(self, ctx: list[tuple[str, int]]) -> None: |
| 591 | """Replace the entire import context with a new value.""" |
| 592 | self.import_ctx = ctx.copy() |
| 593 | |
| 594 | def report( |
| 595 | self, |
no test coverage detected