Skip to content

Commit efc215a

Browse files
authored
Merge pull request #366 from revolter/patch-2
Fix build errors Overriding coverage check because no good testing technique was determined, and there wasn't one for this line in the past. We should keep looking for a good way to test this in the future, but for now there's no reason to block the landing of this code.
2 parents 87630df + 9a3f856 commit efc215a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

slackclient/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ def websocket_safe_read(self):
286286
# SSLWantReadError
287287
return ""
288288
raise
289-
except WebSocketConnectionClosedException as e:
289+
except WebSocketConnectionClosedException:
290290
logging.debug("RTM disconnected")
291291
self.connected = False
292292
if self.auto_reconnect:

0 commit comments

Comments
 (0)