Skip to content
This repository was archived by the owner on Jan 5, 2026. It is now read-only.

Commit 8696c83

Browse files
authored
Merge pull request #701 from microsoft/mm-api-ref-docs-fixes-wip
mm-api-ref-docs-build-fixes
2 parents ec836cf + 4cfa247 commit 8696c83

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

libraries/botbuilder-core/botbuilder/core/bot_framework_adapter.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -685,11 +685,11 @@ async def get_conversations(self, service_url: str, continuation_token: str = No
685685
:return: A task that represents the work queued to execute
686686
687687
.. remarks::
688-
The channel server returns results in pages and each page will include a `continuationToken` that
689-
can be used to fetch the next page of results from the server.
690-
If the task completes successfully, the result contains a page of the members of the current conversation.
691-
This overload may be called from outside the context of a conversation, as only the bot's service URL and
692-
credentials are required.
688+
The channel server returns results in pages and each page will include a `continuationToken` that
689+
can be used to fetch the next page of results from the server.
690+
If the task completes successfully, the result contains a page of the members of the current conversation.
691+
This overload may be called from outside the context of a conversation, as only the bot's service URL and
692+
credentials are required.
693693
"""
694694
client = await self.create_connector_client(service_url)
695695
return await client.conversations.get_conversations(continuation_token)

libraries/botbuilder-core/botbuilder/core/bot_state.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,7 @@ async def get(
279279
280280
:param turn_context: The context object for this turn
281281
:type turn_context: :class:`botbuilder.core.TurnContext`
282-
:param default_value_or_factory: Defines the default value when no value is set for the property
283-
:type default_value_or_factory: :typing:Union
282+
:param default_value_or_factory: Defines the default value for the property
284283
"""
285284
await self._bot_state.load(turn_context, False)
286285
try:
@@ -307,7 +306,6 @@ async def set(self, turn_context: TurnContext, value: object) -> None:
307306
:type turn_context: :class:`botbuilder.core.TurnContext`
308307
309308
:param value: The value to assign to the property
310-
:type value: :typing:`Object`
311309
"""
312310
await self._bot_state.load(turn_context, False)
313311
await self._bot_state.set_property_value(turn_context, self._name, value)

0 commit comments

Comments
 (0)