diff --git a/helpers/ui.py b/helpers/ui.py index 733608e..335f9d8 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -780,7 +780,7 @@ def set_surrounding_margins(widget: Gtk.Widget, margin: int) -> None: def query_history() -> list | None: try: with open(history_file, "r") as f: - rows = [row for row in f] + rows = [row.rstrip("\n") for row in f] except OSError: rows = None finally: