(self, change)
| 277 | |
| 278 | @observe('file_to_run', 'code_to_run', 'module_to_run') |
| 279 | def _file_to_run_changed(self, change): |
| 280 | new = change['new'] |
| 281 | if new: |
| 282 | self.something_to_run = True |
| 283 | if new and not self.force_interact: |
| 284 | self.interact = False |
| 285 | |
| 286 | # internal, not-configurable |
| 287 | something_to_run=Bool(False) |
nothing calls this directly
no outgoing calls
no test coverage detected