From 925b20e92781547262dac3488dce14d971422f91 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Thu, 7 Nov 2019 14:12:41 +0100 Subject: [PATCH] utils.py: cosmetic: add missing new line Change-Id: I69c335c5ac4fc209daa7fcd7e9f8d509eec289b4 --- utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/utils.py b/utils.py index f88670f..15db411 100644 --- a/utils.py +++ b/utils.py @@ -68,6 +68,7 @@ def swap_nibbles(array): rc.append(((a & 0xf0) >> 4) | ((a & 0x0f) << 4)) return rc + # Convert from list of bytes to big-endian integer def list_to_int(arr): return int(hexdump(arr), 16)