Skip to content

Commit 95a69ec

Browse files
authored
Merge pull request #8098 from radarhere/lcms_version
2 parents eeb1eea + 8dae9b6 commit 95a69ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/PIL/ImageCms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1089,7 +1089,7 @@ def isIntentSupported(
10891089
raise PyCMSError(v) from v
10901090

10911091

1092-
def versions() -> tuple[str, str, str, str]:
1092+
def versions() -> tuple[str, str | None, str, str]:
10931093
"""
10941094
(pyCMS) Fetches versions.
10951095
"""

src/PIL/_imagingcms.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import datetime
22
import sys
33
from typing import Literal, SupportsFloat, TypedDict
44

5-
littlecms_version: str
5+
littlecms_version: str | None
66

77
_Tuple3f = tuple[float, float, float]
88
_Tuple2x3f = tuple[_Tuple3f, _Tuple3f]

0 commit comments

Comments
 (0)