Fix flake8 error.

This commit is contained in:
Jennifer Taylor 2021-06-27 17:51:27 +00:00
parent 9f546ecf42
commit 86f54c495e
1 changed files with 1 additions and 1 deletions

View File

@ -287,7 +287,7 @@ class ByteUtil:
@staticmethod
def combine16bithalves(upper: bytes, lower: bytes) -> bytes:
chunks = [
b''.join([upper[i:(i+2)], lower[i:(i+2)]])
b''.join([upper[i:(i + 2)], lower[i:(i + 2)]])
for i in range(0, len(upper), 2)
]
return b''.join(chunks)