Fix unneeded-not pylint errors
This commit is contained in:
parent
9543e0a190
commit
d37a93ff60
|
@ -2203,9 +2203,9 @@ class Interface:
|
||||||
app.config.get_per('accounts', a, 'last_status_msg')))
|
app.config.get_per('accounts', a, 'last_status_msg')))
|
||||||
continue
|
continue
|
||||||
show = app.config.get_per('accounts', a, 'autoconnect_as')
|
show = app.config.get_per('accounts', a, 'autoconnect_as')
|
||||||
if not show in app.SHOW_LIST:
|
if show not in app.SHOW_LIST:
|
||||||
continue
|
continue
|
||||||
if not show in shows:
|
if show not in shows:
|
||||||
shows[show] = [a]
|
shows[show] = [a]
|
||||||
else:
|
else:
|
||||||
shows[show].append(a)
|
shows[show].append(a)
|
||||||
|
|
Loading…
Reference in New Issue