1
0
mirror of https://github.com/home-assistant/core.git synced 2025-12-24 04:50:05 +00:00

Removes unnecessary else/elif blocks (#26884)

This commit is contained in:
Franck Nijhof
2019-09-24 22:53:03 +02:00
committed by Paulus Schoutsen
parent 18873d202d
commit b1118cb8ff
13 changed files with 53 additions and 42 deletions

View File

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