Skip to content

Commit 95572e3

Browse files
author
annie-mac
committed
fix doc
1 parent 27584f3 commit 95572e3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

sdk/cosmos/azure-cosmos/azure/cosmos/_feed_range.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,18 @@
2929

3030

3131
class FeedRange(ABC):
32-
"""Represents a single feed range in an Azure Cosmos DB SQL API container. """
32+
"""Represents a single feed range in an Azure Cosmos DB SQL API container.
33+
34+
"""
3335

3436
def to_string(self) -> str:
35-
"""Get a json representation of the feed range.
36-
The returned json string can be used to create a new feed range from it.
37+
"""
38+
Get a json representation of the feed range.
39+
The returned json string can be used to create a new feed range from it.
3740
:return: A json representation of the feed range.
3841
:rtype: str
3942
"""
43+
4044
return self._to_base64_encoded_string()
4145

4246
@staticmethod

0 commit comments

Comments
 (0)