Added type hints for format and format_description

This commit is contained in:
Andrew Murray 2023-12-19 14:11:00 +11:00
parent 67890b221e
commit 1f9dafec80

View File

@ -24,6 +24,8 @@
# See the README file for information on usage and redistribution. # See the README file for information on usage and redistribution.
# #
from __future__ import annotations
import atexit import atexit
import builtins import builtins
import io import io
@ -477,8 +479,8 @@ class Image:
* :py:func:`~PIL.Image.frombytes` * :py:func:`~PIL.Image.frombytes`
""" """
format = None format: str | None = None
format_description = None format_description: str | None = None
_close_exclusive_fp_after_loading = True _close_exclusive_fp_after_loading = True
def __init__(self): def __init__(self):