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

Fix unneeded-not pylint errors

parent 9543e0a1
No related branches found
No related tags found
No related merge requests found
......@@ -2203,9 +2203,9 @@ class Interface:
app.config.get_per('accounts', a, 'last_status_msg')))
continue
show = app.config.get_per('accounts', a, 'autoconnect_as')
if not show in app.SHOW_LIST:
if show not in app.SHOW_LIST:
continue
if not show in shows:
if show not in shows:
shows[show] = [a]
else:
shows[show].append(a)
......
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