system: remove unnecessary f-string interpolation

This commit is contained in:
alfrix 2024-01-03 11:29:03 -03:00
parent 5104f3247b
commit 6d0ce76b02

View File

@ -140,7 +140,7 @@ class Panel(ScreenPanel):
title.set_markup(f"\n<b>{c['subject']}</b>\n<i>{c['author']}</i>\n")
commit_box.add(title)
details = Gtk.Label(label=f"{c['message']}", wrap=True, hexpand=True)
details = Gtk.Label(label=c['message'], wrap=True, hexpand=True)
commit_box.add(details)
commit_box.add(Gtk.Separator())
vbox.add(commit_box)