mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-11 04:07:21 +03:00
Added type hints for format and format_description
This commit is contained in:
parent
67890b221e
commit
1f9dafec80
|
@ -24,6 +24,8 @@
|
|||
# See the README file for information on usage and redistribution.
|
||||
#
|
||||
|
||||
from __future__ import annotations
|
||||
|
||||
import atexit
|
||||
import builtins
|
||||
import io
|
||||
|
@ -477,8 +479,8 @@ class Image:
|
|||
* :py:func:`~PIL.Image.frombytes`
|
||||
"""
|
||||
|
||||
format = None
|
||||
format_description = None
|
||||
format: str | None = None
|
||||
format_description: str | None = None
|
||||
_close_exclusive_fp_after_loading = True
|
||||
|
||||
def __init__(self):
|
||||
|
|
Loading…
Reference in New Issue
Block a user