Skip to content

Commit 0abe50b

Browse files
committed
small fixes
1 parent 1dbbd3f commit 0abe50b

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/apireference.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ RetrySettings
6060
:inherited-members:
6161
:undoc-members:
6262

63+
6364
Result Sets
6465
^^^^^^^^^^^
6566

docs/overview.rst

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,7 @@ The most recent published version of this documentation should be at https://ydb
1414
Community
1515
---------
1616

17-
You can ask your questions in official Telegram chats:
18-
19-
* **EN** `YDB chat <https://t.me/ydb_en>`_.
20-
* **RU** `YDB chat <https://t.me/ydb_ru>`_.
21-
17+
You can ask your questions in official Telegram chats: `EN <https://t.me/ydb_en>`_ | `RU <https://t.me/ydb_ru>`_.
2218

2319
Bugs and feature enhancements to YDB Python SDK should be reported on the `GitHub
2420
issue tracker

ydb/_grpc/grpcwrapper/ydb_query_public_types.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212

1313
class BaseQueryTxMode(IToProto):
1414
"""Abstract class for Query Transaction Modes."""
15+
1516
@property
1617
@abc.abstractmethod
1718
def name(self) -> str:
@@ -23,6 +24,7 @@ class QuerySnapshotReadOnly(BaseQueryTxMode):
2324
All the data reads are consistent. The snapshot is taken when the transaction begins,
2425
meaning the transaction sees all changes committed before it began.
2526
"""
27+
2628
def __init__(self):
2729
self._name = "snapshot_read_only"
2830

@@ -38,6 +40,7 @@ class QuerySerializableReadWrite(BaseQueryTxMode):
3840
"""This mode guarantees that the result of successful parallel transactions is equivalent
3941
to their serial execution, and there are no read anomalies for successful transactions.
4042
"""
43+
4144
def __init__(self):
4245
self._name = "serializable_read_write"
4346

0 commit comments

Comments
 (0)