aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/Pillow/py3/PIL/ImageEnhance.py
diff options
context:
space:
mode:
authorkickbutt <kickbutt@yandex-team.com>2024-01-23 23:36:43 +0300
committerkickbutt <kickbutt@yandex-team.com>2024-01-23 23:55:22 +0300
commitfe742a0b69a530f86d1ea7aa84978d673256f8b7 (patch)
treea045a5eb8dba770797e84d0b233098605396027d /contrib/python/Pillow/py3/PIL/ImageEnhance.py
parentbd7d89b121ae7b9f4427766292c950fcc91c2975 (diff)
downloadydb-fe742a0b69a530f86d1ea7aa84978d673256f8b7.tar.gz
Fix separator in CUDA_ARCHITECTURES
Diffstat (limited to 'contrib/python/Pillow/py3/PIL/ImageEnhance.py')
-rw-r--r--contrib/python/Pillow/py3/PIL/ImageEnhance.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/python/Pillow/py3/PIL/ImageEnhance.py b/contrib/python/Pillow/py3/PIL/ImageEnhance.py
index 3b79d5c46a..93a50d2a2b 100644
--- a/contrib/python/Pillow/py3/PIL/ImageEnhance.py
+++ b/contrib/python/Pillow/py3/PIL/ImageEnhance.py
@@ -17,6 +17,7 @@
#
# See the README file for information on usage and redistribution.
#
+from __future__ import annotations
from . import Image, ImageFilter, ImageStat
@@ -59,7 +60,7 @@ class Contrast(_Enhance):
This class can be used to control the contrast of an image, similar
to the contrast control on a TV set. An enhancement factor of 0.0
- gives a solid grey image. A factor of 1.0 gives the original image.
+ gives a solid gray image. A factor of 1.0 gives the original image.
"""
def __init__(self, image):