Fix flake8 error.

main
Jennifer Taylor 2 years ago
parent 9f546ecf42
commit 86f54c495e
  1. 2
      arcadeutils/binary.py

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

Loading…
Cancel
Save