Pylint cleanups (#15626)
* Pylint 2 no-else-return fixes * Remove unneeded abstract-class-not-used pylint disable
This commit is contained in:
parent
a38c0d6d15
commit
b7c336a687
166 changed files with 425 additions and 490 deletions
|
@ -38,9 +38,9 @@ class StreamHandler(logging.Handler):
|
|||
else:
|
||||
if not record.msg.startswith('WS'):
|
||||
return
|
||||
elif len(record.args) < 2:
|
||||
if len(record.args) < 2:
|
||||
return
|
||||
elif record.args[1] == 'Connected':
|
||||
if record.args[1] == 'Connected':
|
||||
self.entity.count += 1
|
||||
elif record.args[1] == 'Closed connection':
|
||||
self.entity.count -= 1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue