We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a751097 commit 87bf0b5Copy full SHA for 87bf0b5
ydb/issues.py
@@ -6,8 +6,11 @@
6
7
from . import _apis
8
9
+# Workaround for good IDE and universal for runtime
10
if typing.TYPE_CHECKING:
11
from _grpc.v4.protos import ydb_issue_message_pb2, ydb_operation_pb2
12
+else:
13
+ from ._grpc.common.protos import ydb_issue_message_pb2, ydb_operation_pb2
14
15
16
_TRANSPORT_STATUSES_FIRST = 401000
ydb/types.py
@@ -12,8 +12,11 @@
from . import table
17
from ._grpc.v4.protos import ydb_value_pb2
18
19
+ from ._grpc.common.protos import ydb_value_pb2
20
21
22
_SECONDS_IN_DAY = 60 * 60 * 24
0 commit comments