From cf0d222625151afbaed1b5f476f5aa782ae02e6d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Wed, 24 Jun 2020 19:25:02 +0200 Subject: core/commands: code style fixes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- poezio/core/commands.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/poezio/core/commands.py b/poezio/core/commands.py index 088189fe..e926dba5 100644 --- a/poezio/core/commands.py +++ b/poezio/core/commands.py @@ -452,8 +452,8 @@ class CommandCore: password = args[2] if len(args) > 2 else None method = 'remote' if config.get('use_remote_bookmarks') else 'local' - autojoin = method == 'local' or \ - (len(args) > 1 and args[1].lower() == 'true') + autojoin = (method == 'local' or + (len(args) > 1 and args[1].lower() == 'true')) self._add_bookmark(room, nick, autojoin, password, method) @@ -494,7 +494,7 @@ class CommandCore: # exists and fill nickname if none was specified and not default. tab = self.core.tabs.by_name_and_class(room, tabs.MucTab) if tab and isinstance(tab, tabs.MucTab) and \ - tab.joined and tab.own_nick != self.core.own_nick: + tab.joined and tab.own_nick != self.core.own_nick: nick = nick or tab.own_nick # Validate / Normalize -- cgit v1.2.3