(self, files_modified: Sequence[str] = ("?",))
| 10 | """Request to rerun REPL session ASAP because imported modules changed""" |
| 11 | |
| 12 | def __init__(self, files_modified: Sequence[str] = ("?",)) -> None: |
| 13 | self.files_modified = files_modified |
| 14 | |
| 15 | def __repr__(self) -> str: |
| 16 | return "<ReloadEvent from {}>".format(" & ".join(self.files_modified)) |
nothing calls this directly
no outgoing calls
no test coverage detected