Skip to content

Commit accfbc1

Browse files
author
Emily Olshefski
committed
Revert "Revert "Update component_dialog.py""
This reverts commit 7955508.
1 parent 7955508 commit accfbc1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/component_dialog.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ async def end_dialog(
180180

181181
def add_dialog(self, dialog: Dialog) -> object:
182182
"""
183-
Adds a :class:`Dialog` to the component dialog and returns the updated component.
183+
Adds a :class:`botbuilder.dialogs.Dialog` to the component dialog and returns the updated component.
184184
185185
:param dialog: The dialog to add.
186-
:type dialog: :class:`Dialog`
186+
:type dialog: :class:`botbuilder.dialogs.Dialog`
187187
:return self: The updated :class:`ComponentDialog`
188188
:rtype self: :class:`ComponentDialog`
189189
"""
@@ -198,7 +198,7 @@ def find_dialog(self, dialog_id: str) -> Dialog:
198198
199199
:param dialog_id: The dialog to add.
200200
:type dialog_id: str
201-
:return: The :class:`Dialog`; or None if there is not a match for the ID.
201+
:return: The :class:`botbuilder.dialogs.Dialog`; or None if there is not a match for the ID.
202202
"""
203203
return self._dialogs.find(dialog_id)
204204

0 commit comments

Comments
 (0)