From 2eb5987d1860294270bc58d4c81bdbed46626a92 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 6 Mar 2024 20:54:20 +1100 Subject: [PATCH] Added type hints --- src/PIL/_jxl.pyi | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/PIL/_jxl.pyi diff --git a/src/PIL/_jxl.pyi b/src/PIL/_jxl.pyi new file mode 100644 index 000000000..b0235555d --- /dev/null +++ b/src/PIL/_jxl.pyi @@ -0,0 +1,5 @@ +from __future__ import annotations + +from typing import Any + +def __getattr__(name: str) -> Any: ...