From 487a1167959c9fc9414967173abd7f4dacec57f0 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Thu, 15 Oct 2020 22:51:30 +0200 Subject: [PATCH] Removed some redundant parantheses --- nw/gui/statusbar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nw/gui/statusbar.py b/nw/gui/statusbar.py index b0ab87ae..0b95ef16 100644 --- a/nw/gui/statusbar.py +++ b/nw/gui/statusbar.py @@ -195,9 +195,9 @@ class GuiMainStatus(QStatusBar): self.statsText.setToolTip( "Project word count (session change)" ) - self.statsText.setText(( + self.statsText.setText( f"Words: {self.projWords:n} ({self.sessWords:+n})" - )) + ) return def _updateTime(self):