Recheck the module given by state.
(self, state: State)
| 704 | func.unanalyzed_type = old |
| 705 | |
| 706 | def reload(self, state: State) -> list[str]: |
| 707 | """Recheck the module given by state.""" |
| 708 | assert state.path is not None |
| 709 | self.fgmanager.flush_cache() |
| 710 | return self.fgmanager.update([(state.id, state.path)], []) |
| 711 | |
| 712 | def ensure_loaded(self, state: State, force: bool = False) -> MypyFile: |
| 713 | """Make sure that the module represented by state is fully loaded.""" |
no test coverage detected