diff --git a/stubs/PIL/__init__.pyi b/stubs/PIL/__init__.pyi --- a/stubs/PIL/__init__.pyi +++ b/stubs/PIL/__init__.pyi @@ -1,6 +1,8 @@ # Stubs for PIL (Python 3) # -# NOTE: This dynamically typed stub was automatically generated by stubgen. -VERSION: str -PILLOW_VERSION: str +class Image: + @classmethod + def open(cls) -> Image: ... + @classmethod + def frombytes(cls, mode, size, data): ...