pylint 2.3.0 (#21485)

* pylint 2.3.0

* remove const

*  disable=syntax-error
This commit is contained in:
Daniel Høyer Iversen 2019-02-27 22:10:40 +01:00 committed by David F. Mulcahey
parent 2482816a11
commit 519315f9c8
26 changed files with 47 additions and 57 deletions

View file

@ -130,7 +130,7 @@ class WebSocketHandler:
if msg.type in (WSMsgType.CLOSE, WSMsgType.CLOSING):
raise Disconnect
elif msg.type != WSMsgType.TEXT:
if msg.type != WSMsgType.TEXT:
disconnect_warn = 'Received non-Text message.'
raise Disconnect