From 1dc2a4958137ff90cf5268c20816c4df1e1888d6 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Tue, 29 Sep 2020 23:51:13 +0200 Subject: [PATCH] Fixed code style error (too long line) --- nw/gui/theme.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nw/gui/theme.py b/nw/gui/theme.py index 3a511907..0af7df5e 100644 --- a/nw/gui/theme.py +++ b/nw/gui/theme.py @@ -376,7 +376,9 @@ class GuiTheme: confParser = configparser.ConfigParser() for themeDir in os.listdir(os.path.join(self.mainConf.themeRoot, self.guiPath)): - themeConf = os.path.join(self.mainConf.themeRoot, self.guiPath, themeDir, self.confName) + themeConf = os.path.join( + self.mainConf.themeRoot, self.guiPath, themeDir, self.confName + ) logger.verbose("Checking theme config for '%s'" % themeDir) try: with open(themeConf, mode="r", encoding="utf8") as inFile: