diff options
author | alexv-smirnov <alex@ydb.tech> | 2022-11-25 19:36:17 +0300 |
---|---|---|
committer | alexv-smirnov <alex@ydb.tech> | 2022-11-25 19:36:17 +0300 |
commit | ffb5ad09d39d36cf1d323c39fcb28dc9a8c76830 (patch) | |
tree | 19e96e2f5fb7103a9137f2db6885946b5b26dde2 | |
parent | c9d0aa8e198fc96e3cd5bcf8663a969d8df33e8a (diff) | |
download | ydb-ffb5ad09d39d36cf1d323c39fcb28dc9a8c76830.tar.gz |
remove __author__ from py files
-rw-r--r-- | ydb/tests/functional/rename/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/functional/sqs/common/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/functional/sqs/messaging/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/functional/sqs/multinode/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/functional/sqs/with_quotas/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/common/generators.py | 3 | ||||
-rw-r--r-- | ydb/tests/library/common/yatest_common.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/matchers/collection.py | 3 | ||||
-rw-r--r-- | ydb/tests/library/matchers/datashard_matchers.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/matchers/response_matchers.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/nemesis/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/nemesis/network/__init__.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/nemesis/network/client.py | 3 | ||||
-rw-r--r-- | ydb/tests/library/sqs/matchers.py | 2 | ||||
-rw-r--r-- | ydb/tests/library/sqs/requests_client.py | 1 |
15 files changed, 0 insertions, 32 deletions
diff --git a/ydb/tests/functional/rename/__init__.py b/ydb/tests/functional/rename/__init__.py index 11f255bed7..40a96afc6f 100644 --- a/ydb/tests/functional/rename/__init__.py +++ b/ydb/tests/functional/rename/__init__.py @@ -1,3 +1 @@ # -*- coding: utf-8 -*- - -_author__ = 'svc@yandex-team.ru' diff --git a/ydb/tests/functional/sqs/common/__init__.py b/ydb/tests/functional/sqs/common/__init__.py index 6ca2b96134..faa18be5bb 100644 --- a/ydb/tests/functional/sqs/common/__init__.py +++ b/ydb/tests/functional/sqs/common/__init__.py @@ -1,4 +1,2 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - -_author__ = 'komels@yandex-team.ru' diff --git a/ydb/tests/functional/sqs/messaging/__init__.py b/ydb/tests/functional/sqs/messaging/__init__.py index 6ca2b96134..faa18be5bb 100644 --- a/ydb/tests/functional/sqs/messaging/__init__.py +++ b/ydb/tests/functional/sqs/messaging/__init__.py @@ -1,4 +1,2 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - -_author__ = 'komels@yandex-team.ru' diff --git a/ydb/tests/functional/sqs/multinode/__init__.py b/ydb/tests/functional/sqs/multinode/__init__.py index 6ca2b96134..faa18be5bb 100644 --- a/ydb/tests/functional/sqs/multinode/__init__.py +++ b/ydb/tests/functional/sqs/multinode/__init__.py @@ -1,4 +1,2 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - -_author__ = 'komels@yandex-team.ru' diff --git a/ydb/tests/functional/sqs/with_quotas/__init__.py b/ydb/tests/functional/sqs/with_quotas/__init__.py index 6ca2b96134..faa18be5bb 100644 --- a/ydb/tests/functional/sqs/with_quotas/__init__.py +++ b/ydb/tests/functional/sqs/with_quotas/__init__.py @@ -1,4 +1,2 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - -_author__ = 'komels@yandex-team.ru' diff --git a/ydb/tests/library/common/generators.py b/ydb/tests/library/common/generators.py index 8261535a30..7f660e97a7 100644 --- a/ydb/tests/library/common/generators.py +++ b/ydb/tests/library/common/generators.py @@ -4,9 +4,6 @@ import random import string -__author__ = 'asatarin@yandex-team.ru' - - __hex_digits = '0123456789ABCDEF' diff --git a/ydb/tests/library/common/yatest_common.py b/ydb/tests/library/common/yatest_common.py index 10baac8cf3..c1acffb109 100644 --- a/ydb/tests/library/common/yatest_common.py +++ b/ydb/tests/library/common/yatest_common.py @@ -7,8 +7,6 @@ For yatest.common package see file library/python/testing/yatest_common/yatest/common/__init__.py """ -__author__ = 'asatarin@yandex-team.ru' - def wrap(func, alternative): def wrapped(*args, **kwargs): diff --git a/ydb/tests/library/matchers/collection.py b/ydb/tests/library/matchers/collection.py index e2151911a8..568ab18bdb 100644 --- a/ydb/tests/library/matchers/collection.py +++ b/ydb/tests/library/matchers/collection.py @@ -7,9 +7,6 @@ from hamcrest.library.collection.is_empty import IsEmpty from hamcrest.library.collection.issequence_containinginorder import IsSequenceContainingInOrder -__author__ = 'asatarin@yandex-team.ru' - - class IsEmptyNice(IsEmpty): def describe_mismatch(self, item, mismatch_description): try: diff --git a/ydb/tests/library/matchers/datashard_matchers.py b/ydb/tests/library/matchers/datashard_matchers.py index 94ac5e9a9a..3047c5e356 100644 --- a/ydb/tests/library/matchers/datashard_matchers.py +++ b/ydb/tests/library/matchers/datashard_matchers.py @@ -4,8 +4,6 @@ from ydb.tests.library.common.msgbus_types import MessageBusStatus from ydb.tests.library.matchers.response_matchers import AbstractProtobufMatcher, FakeProtobuf -__author__ = 'asatarin@yandex-team.ru' - class TResponseMatcher(AbstractProtobufMatcher): diff --git a/ydb/tests/library/matchers/response_matchers.py b/ydb/tests/library/matchers/response_matchers.py index 5fb2abcdfd..5d96db50bf 100644 --- a/ydb/tests/library/matchers/response_matchers.py +++ b/ydb/tests/library/matchers/response_matchers.py @@ -9,8 +9,6 @@ from hamcrest.core.helpers.wrap_matcher import wrap_matcher from ydb.tests.library.common.msgbus_types import MessageBusStatus -__author__ = 'asatarin@yandex-team.ru' - class FakeProtobuf(object): """ diff --git a/ydb/tests/library/nemesis/__init__.py b/ydb/tests/library/nemesis/__init__.py index 5c8fc7caeb..faa18be5bb 100644 --- a/ydb/tests/library/nemesis/__init__.py +++ b/ydb/tests/library/nemesis/__init__.py @@ -1,4 +1,2 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - -__author__ = 'komels@yandex-team.ru' diff --git a/ydb/tests/library/nemesis/network/__init__.py b/ydb/tests/library/nemesis/network/__init__.py index cc096de342..faa18be5bb 100644 --- a/ydb/tests/library/nemesis/network/__init__.py +++ b/ydb/tests/library/nemesis/network/__init__.py @@ -1,4 +1,2 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- - -__author__ = 'asatarin@yandex-team.ru' diff --git a/ydb/tests/library/nemesis/network/client.py b/ydb/tests/library/nemesis/network/client.py index 784741462c..98570cb59e 100644 --- a/ydb/tests/library/nemesis/network/client.py +++ b/ydb/tests/library/nemesis/network/client.py @@ -6,9 +6,6 @@ import logging # noinspection PyUnresolvedReferences from ydb.tests.library.nemesis.remote_execution import execute_command_with_output_single_host -__author__ = 'asatarin@yandex-team.ru' - - logger = logging.getLogger() diff --git a/ydb/tests/library/sqs/matchers.py b/ydb/tests/library/sqs/matchers.py index a8bb8508fc..7a2dc52bed 100644 --- a/ydb/tests/library/sqs/matchers.py +++ b/ydb/tests/library/sqs/matchers.py @@ -6,8 +6,6 @@ from hamcrest.core.base_matcher import BaseMatcher from ydb.tests.library.matchers.collection import IsSublistOf -_author__ = 'komels@yandex-team.ru' - def extract_field(read_response, field): if read_response is None: diff --git a/ydb/tests/library/sqs/requests_client.py b/ydb/tests/library/sqs/requests_client.py index 8a9f1648bf..437957d16f 100644 --- a/ydb/tests/library/sqs/requests_client.py +++ b/ydb/tests/library/sqs/requests_client.py @@ -10,7 +10,6 @@ import six from ydb.tests.library.common.helpers import wrap_in_list -_author__ = 'komels@yandex-team.ru' logger = logging.getLogger(__name__) |