diff options
author | thegeorg <thegeorg@yandex-team.com> | 2024-12-19 20:02:10 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2024-12-19 21:13:22 +0300 |
commit | 0c60168208f5d94be0d7783610af8cd47e1f68cc (patch) | |
tree | c8adfd5eda12d7bdb1cda39a550a706310864fa6 /contrib/python | |
parent | 3bf2a018f9e680aa955169cdbf0d5bcf9de9a49f (diff) | |
download | ydb-0c60168208f5d94be0d7783610af8cd47e1f68cc.tar.gz |
Mandate string normalization in yamaker import specs
commit_hash:6d2a56c5f8e052fb718c9da2ce6d1eb010185b51
Diffstat (limited to 'contrib/python')
-rw-r--r-- | contrib/python/Pillow/py3/.yandex_meta/__init__.py | 4 | ||||
-rw-r--r-- | contrib/python/grpcio/py3/.yandex_meta/__init__.py | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/contrib/python/Pillow/py3/.yandex_meta/__init__.py b/contrib/python/Pillow/py3/.yandex_meta/__init__.py index 248ce1165e..63d5c8ea50 100644 --- a/contrib/python/Pillow/py3/.yandex_meta/__init__.py +++ b/contrib/python/Pillow/py3/.yandex_meta/__init__.py @@ -47,8 +47,8 @@ def post_install(self): { "NOT OPENSOURCE": Linkable( CFLAGS=["-DHAVE_LIBIMAGEQUANT"], - PEERDIR=['contrib/libs/libimagequant'], - ADDINCL=['contrib/libs/libimagequant'], + PEERDIR=["contrib/libs/libimagequant"], + ADDINCL=["contrib/libs/libimagequant"], ), } ), diff --git a/contrib/python/grpcio/py3/.yandex_meta/__init__.py b/contrib/python/grpcio/py3/.yandex_meta/__init__.py index d519c459ee..5e4e2c47ca 100644 --- a/contrib/python/grpcio/py3/.yandex_meta/__init__.py +++ b/contrib/python/grpcio/py3/.yandex_meta/__init__.py @@ -57,7 +57,7 @@ def post_install(self): # see https://github.com/grpc/grpc/blob/v1.45.0/tools/bazel.rc#L103 pb.after( "ADDINCL", - Switch({'SANITIZER_TYPE == undefined': Linkable(CXXFLAGS=["-fno-sanitize=function"])}), + Switch({"SANITIZER_TYPE == undefined": Linkable(CXXFLAGS=["-fno-sanitize=function"])}), ) |