From ff8986e103bdec374f04f2cc1827212d099e4d91 Mon Sep 17 00:00:00 2001 From: Alex Huddleston Date: Fri, 1 Dec 2017 20:16:56 +0000 Subject: [PATCH] Changed test.py to read 0.bin instead of 1.bin --- test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test.py b/test.py index 0c63a35..b7dee32 100644 --- a/test.py +++ b/test.py @@ -1,4 +1,4 @@ -with open('data/1.bin', 'rb') as f: +with open('data/0.bin', 'rb') as f: data = f.read() print(hex(int.from_bytes(data, byteorder='little', signed=False)))