Skip to content

Commit 05a3ae3

Browse files
committed
small fixes
1 parent 1dbbd3f commit 05a3ae3

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111

1212

1313
class BaseQueryTxMode(IToProto):
14-
"""Abstract class for Query Transaction Modes."""
14+
"""Abstract class for Query Transaction Modes.
15+
"""
16+
1517
@property
1618
@abc.abstractmethod
1719
def name(self) -> str:
@@ -23,6 +25,7 @@ class QuerySnapshotReadOnly(BaseQueryTxMode):
2325
All the data reads are consistent. The snapshot is taken when the transaction begins,
2426
meaning the transaction sees all changes committed before it began.
2527
"""
28+
2629
def __init__(self):
2730
self._name = "snapshot_read_only"
2831

@@ -38,6 +41,7 @@ class QuerySerializableReadWrite(BaseQueryTxMode):
3841
"""This mode guarantees that the result of successful parallel transactions is equivalent
3942
to their serial execution, and there are no read anomalies for successful transactions.
4043
"""
44+
4145
def __init__(self):
4246
self._name = "serializable_read_write"
4347

0 commit comments

Comments
 (0)