From 6d0ce76b02abf6aac55d3632c05db0598386a4f2 Mon Sep 17 00:00:00 2001 From: alfrix Date: Wed, 3 Jan 2024 11:29:03 -0300 Subject: [PATCH] system: remove unnecessary f-string interpolation --- panels/system.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/panels/system.py b/panels/system.py index 6bddaa36..1cd3323e 100644 --- a/panels/system.py +++ b/panels/system.py @@ -140,7 +140,7 @@ class Panel(ScreenPanel): title.set_markup(f"\n{c['subject']}\n{c['author']}\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)