From d735bc3633559651f8dfaaa1ede7f00e93e08e3f Mon Sep 17 00:00:00 2001 From: Alix JEUDI--LEMOINE Date: Tue, 20 May 2025 14:29:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=91=20Remove=20numpy=20for=20tests=20(?= =?UTF-8?q?unuseful)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/test_images.py | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/test_images.py b/tests/test_images.py index 1ee2b67..44f3bcc 100644 --- a/tests/test_images.py +++ b/tests/test_images.py @@ -1,7 +1,6 @@ from test_main import * from PIL import Image import io -import numpy as np def create_test_image(): img = Image.new('RGB', (100, 100), color='red')