From 22850286e57f0bcc114dc17b94610f27c23cd14d Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sun, 5 Nov 2023 17:23:30 +0100 Subject: [PATCH] Remove tool obsoleted by RGBGFX 0.6.0 --- src/tools/bit7ify.py | 8 -------- 1 file changed, 8 deletions(-) delete mode 100755 src/tools/bit7ify.py diff --git a/src/tools/bit7ify.py b/src/tools/bit7ify.py deleted file mode 100755 index f830383..0000000 --- a/src/tools/bit7ify.py +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env python3 - -from sys import argv - - -with open(argv[1], "rb") as input: - with open(argv[2], "wb") as output: - output.write(bytes((byte ^ 0x80 for byte in input.read())))