Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Feb 9, 2023
1 parent 0eac4f1 commit 074c6af
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/PIL/Image.py
Expand Up @@ -1434,7 +1434,7 @@ def get_value(element):
def getexif(self):
"""
Gets EXIF data of the image.
:returns: an :py:class:`~PIL.Image.Exif` object.
"""
if self._exif is None:
Expand Down Expand Up @@ -3608,18 +3608,19 @@ def _apply_env_variables(env=None):
class Exif(MutableMapping):
"""
Exif class provides read and write access to EXIF image data.
Only basic information is available on the root level, in Exif object
itself. In order to access the rest, obtain their respective IFDs using
:py:meth:`~PIL.Image.Exif.get_ifd` method and one of
:py:class:`~PIL.ExifTags.IFD` members (most notably ``Exif`` and
``GPSInfo``).
Both root Exif and child IFD objects support dict interface and can be
indexed by int values that are available as enum members of
:py:class:`~PIL.ExifTags.Base`, :py:class:`~PIL.ExifTags.GPS`, and
:py:class:`~PIL.ExifTags.Interop`.
"""

endian = None
bigtiff = False

Expand Down

0 comments on commit 074c6af

Please sign in to comment.