Removes unnecessary else/elif blocks (#26884)
This commit is contained in:
parent
18873d202d
commit
b1118cb8ff
13 changed files with 53 additions and 42 deletions
|
@ -165,7 +165,7 @@ class WebSocketHandler:
|
|||
if msg.type in (WSMsgType.CLOSE, WSMsgType.CLOSING):
|
||||
break
|
||||
|
||||
elif msg.type != WSMsgType.TEXT:
|
||||
if msg.type != WSMsgType.TEXT:
|
||||
disconnect_warn = "Received non-Text message."
|
||||
break
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue