Skip to content
Snippets Groups Projects
Commit 8f89f039 authored by Philipp Hörist's avatar Philipp Hörist
Browse files

Fix pylint error

parent 9c8a47aa
No related branches found
No related tags found
No related merge requests found
......@@ -402,8 +402,8 @@ class LegacyContactsAPI:
for jid in self.get_jid_list(account):
if jid == our_jid:
continue
if common.app.jid_is_transport(jid) and not \
_('Transports') in groups:
if (common.app.jid_is_transport(jid) and
_('Transports') not in groups):
# do not count transports
continue
if self.has_brother(account, jid, accounts) and not \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment