From ca393584fcd99c2015e5d9b2b0fb0d243c8e56ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20M=2E=20Popoff?= Date: Fri, 5 Jul 2024 12:05:35 +0200 Subject: [PATCH] refactor: remove unused bitShift parameter from img_to_bitplane function --- src/ALP4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ALP4.py b/src/ALP4.py index deef063..65bdae2 100644 --- a/src/ALP4.py +++ b/src/ALP4.py @@ -411,7 +411,7 @@ def afficheur(bitPlane): return display -def img_to_bitplane(imgArray, bitShift): +def img_to_bitplane(imgArray): """ Convert a binary image into a bitplane. """