Return a copy of the import context.
(self)
| 584 | return self.target_module |
| 585 | |
| 586 | def import_context(self) -> list[tuple[str, int]]: |
| 587 | """Return a copy of the import context.""" |
| 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.""" |
no test coverage detected