8000 Update dialog_state.py · il-null-yuyi/botbuilder-python@301c17b · GitHub
[go: up one dir, main page]

Skip to content

Commit 301c17b

Browse files
author
Emily Olshefski
committed
Update dialog_state.py
1 parent 257f430 commit 301c17b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_state.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def __init__(self, stack: List[DialogInstance] = None):
1515
Initializes a new instance of the :class:`DialogState` class.
1616
1717
:param stack: The state information to initialize the stack with.
18-
:type stack: :class:`typing.List[:class:`DialogInstance`]`
18+
:type stack: :class:`typing.List`
1919
"""
2020
if stack is None:
2121
self._dialog_stack = []
@@ -28,7 +28,7 @@ def dialog_stack(self):
2828
Initializes a new instance of the :class:`DialogState` class.
2929
3030
:return: The state information to initialize the stack with.
31-
:rtype: :class:`typing.List[:class:`DialogInstance`]`
31+
:rtype: :class:`typing.List`
3232
"""
3333
return self._dialog_stack
3434

0 commit comments

Comments
 (0)
0