Wrap some long or too long code lines

This commit is contained in:
Veronica K. B. Olsen
2020-05-28 23:00:20 +02:00
parent d852a1a144
commit 1a9b6906c6
9 changed files with 81 additions and 42 deletions
+3 -1
View File
@@ -297,7 +297,9 @@ class GuiIcons:
# Finally. we check if we have a fallback icon
if self.mainConf.guiDark:
fbackIcon = path.join(self.mainConf.iconPath, self.fbackName, "%s-dark.svg" % iconKey)
fbackIcon = path.join(
self.mainConf.iconPath, self.fbackName, "%s-dark.svg" % iconKey
)
if path.isfile(fbackIcon):
logger.verbose("Loading icon '%s' from fallback theme" % iconKey)
return QIcon(fbackIcon)