Skip to content

Commit

Permalink
Import __version__ from .
Browse files Browse the repository at this point in the history
  • Loading branch information
radarhere committed Mar 12, 2024
1 parent 54d329b commit b22e471
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/PIL/ImageCms.py
Expand Up @@ -25,7 +25,7 @@
from functools import reduce
from typing import Any

from . import Image
from . import Image, __version__
from ._deprecate import deprecate

try:
Expand Down Expand Up @@ -1087,4 +1087,4 @@ def versions():
12,
'(PIL.features.version("littlecms2"), sys.version, PIL.__version__)',
)
return _VERSION, core.littlecms_version, sys.version.split()[0], Image.__version__
return _VERSION, core.littlecms_version, sys.version.split()[0], __version__

0 comments on commit b22e471

Please sign in to comment.