Fix unneeded-not pylint errors

This commit is contained in:
Philipp Hörist 2018-09-18 16:03:35 +02:00 committed by Philipp Hörist
parent 9543e0a190
commit d37a93ff60
1 changed files with 2 additions and 2 deletions

View File

@ -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)