Skip to content

Commit ee57513

Browse files
authored
Merge pull request #234 Change ydb package imports to relative qrort/main
2 parents 26d43c7 + 2b66fbe commit ee57513

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: ydb/_errors.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from dataclasses import dataclass
22
from typing import Optional
33

4-
from ydb import issues
4+
from . import issues
55

66
_errors_retriable_fast_backoff_types = [
77
issues.Unavailable,

Diff for: ydb/scheme_test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
from ydb.scheme import (
1+
from .scheme import (
22
SchemeEntryType,
33
_wrap_scheme_entry,
44
_wrap_list_directory_response,
55
)
6-
from ydb._apis import ydb_scheme
6+
from ._apis import ydb_scheme
77

88

99
def test_wrap_scheme_entry():

Diff for: ydb/table_test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
from unittest import mock
2-
from ydb import (
2+
from . import (
33
retry_operation_impl,
44
YdbRetryOperationFinalResult,
55
issues,

Diff for: ydb/tornado/tornado_helpers.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
except ImportError:
88
tornado = None
99

10-
from ydb.table import retry_operation_impl, YdbRetryOperationSleepOpt
10+
from .table import retry_operation_impl, YdbRetryOperationSleepOpt
1111

1212

1313
def as_tornado_future(foreign_future, timeout=None):

0 commit comments

Comments
 (0)