From 9d584a1014f36f9c297324c4a7c62e3020f05db4 Mon Sep 17 00:00:00 2001 From: wiredfool Date: Sat, 25 Jan 2025 13:42:32 +0000 Subject: [PATCH] Lint Co-authored-by: Andrew Murray <3112309+radarhere@users.noreply.github.com> --- src/PIL/Image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/PIL/Image.py b/src/PIL/Image.py index ef0a05b74..3409f5757 100644 --- a/src/PIL/Image.py +++ b/src/PIL/Image.py @@ -754,7 +754,7 @@ class Image: def __arrow_c_array__( self, requested_schema: object | None = None - ) -> Tuple[object, object]: + ) -> tuple[object, object]: self.load() return (self.im.__arrow_c_schema__(), self.im.__arrow_c_array__())