diff options
author | w495 <w495@yandex-team.ru> | 2022-02-10 16:48:28 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:48:28 +0300 |
commit | a92e72515b93df128fbf9683d2c341c9ca5ddd5c (patch) | |
tree | 16b2d27b8b9cd082ed4182114bb46510e1bd05b9 | |
parent | f49c77cb796fe12b4fb7dbdbdf472955017a87b1 (diff) | |
download | ydb-a92e72515b93df128fbf9683d2c341c9ca5ddd5c.tar.gz |
Restoring authorship annotation for <w495@yandex-team.ru>. Commit 1 of 2.
3 files changed, 10 insertions, 10 deletions
diff --git a/contrib/python/ya.make b/contrib/python/ya.make index d01ced9f3a..a0c356b8d7 100644 --- a/contrib/python/ya.make +++ b/contrib/python/ya.make @@ -47,7 +47,7 @@ RECURSE( amqp aniso8601 annoy - antlr4 + antlr4 ansiwrap anyconfig anyio @@ -456,7 +456,7 @@ RECURSE( GPy GPyOpt grafanalib - graphene + graphene graphene-django graphene-sqlalchemy graphql-core @@ -1066,7 +1066,7 @@ RECURSE( threadloop thrift timelib - timeout-decorator + timeout-decorator tinycss2 tinyrpc tldextract @@ -1085,7 +1085,7 @@ RECURSE( transfer_manager_client transitions transliterate - trollius + trollius trollsift Twiggy twiggy-goodies diff --git a/ydb/public/sdk/python/examples/basic_example_v1/basic_example.py b/ydb/public/sdk/python/examples/basic_example_v1/basic_example.py index 5845a18a2e..f0282a1ccd 100644 --- a/ydb/public/sdk/python/examples/basic_example_v1/basic_example.py +++ b/ydb/public/sdk/python/examples/basic_example_v1/basic_example.py @@ -323,7 +323,7 @@ def run(endpoint, database, path): upsert_simple(pool, full_path) bulk_upsert(driver.table_client, full_path) - + select_prepared(pool, full_path, 2, 3, 7) select_prepared(pool, full_path, 2, 3, 8) diff --git a/ydb/public/sdk/python/examples/secondary_indexes_builtin/secondary_indexes_builtin.py b/ydb/public/sdk/python/examples/secondary_indexes_builtin/secondary_indexes_builtin.py index 0394997092..a32ee9a6f3 100644 --- a/ydb/public/sdk/python/examples/secondary_indexes_builtin/secondary_indexes_builtin.py +++ b/ydb/public/sdk/python/examples/secondary_indexes_builtin/secondary_indexes_builtin.py @@ -258,16 +258,16 @@ def run(endpoint, database, path): with ydb.SessionPool(driver, size=10) as session_pool: ensure_path_exists(driver, database, path) - full_path = os.path.join(database, path) + full_path = os.path.join(database, path) - create_tables(session_pool, full_path) + create_tables(session_pool, full_path) - fill_data(session_pool, full_path) + fill_data(session_pool, full_path) - peter_series = select_by_username(session_pool, full_path, "Peter Dinklage") + peter_series = select_by_username(session_pool, full_path, "Peter Dinklage") assert len(peter_series) == 2 - emilia_series = select_by_username(session_pool, full_path, "Emilia Clarke") + emilia_series = select_by_username(session_pool, full_path, "Emilia Clarke") assert len(emilia_series) == 3 |