Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Features
Internal
---------
* Require a more recent version of the `wcwidth` library.

* Make `safe_invalidate_display` function safer.


1.61.0 (2026/03/07)
Expand Down
5 changes: 4 additions & 1 deletion mycli/packages/toolkit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ def safe_invalidate_display(app: Application) -> None:
def print_empty_string():
app.print_text('')

run_in_terminal(print_empty_string)
try:
run_in_terminal(print_empty_string)
except RuntimeError:
pass