(self)
| 227 | ) |
| 228 | |
| 229 | def _invalidate_app(self) -> None: |
| 230 | prompt_session = getattr(self.mycli, 'prompt_session', None) |
| 231 | if prompt_session is None: |
| 232 | return |
| 233 | try: |
| 234 | prompt_session.app.invalidate() |
| 235 | except Exception: # pragma: no cover - defensive |
| 236 | pass |
no outgoing calls