run black

This commit is contained in:
Jakob Ketterl
2019-11-23 01:12:21 +01:00
parent 91669a7fda
commit 9246500c95
7 changed files with 72 additions and 34 deletions

View File

@ -120,7 +120,6 @@ class WebSocketConnection(object):
self._sendBytes(data_to_send)
def _sendBytes(self, data_to_send):
def chunks(l, n):
"""Yield successive n-sized chunks from l."""
for i in range(0, len(l), n):