8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 257f430 commit 301c17bCopy full SHA for 301c17b
libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_state.py
@@ -15,7 +15,7 @@ def __init__(self, stack: List[DialogInstance] = None):
15
Initializes a new instance of the :class:`DialogState` class.
16
17
:param stack: The state information to initialize the stack with.
18
- :type stack: :class:`typing.List[:class:`DialogInstance`]`
+ :type stack: :class:`typing.List`
19
"""
20
if stack is None:
21
self._dialog_stack = []
@@ -28,7 +28,7 @@ def dialog_stack(self):
28
29
30
:return: The state information to initialize the stack with.
31
- :rtype: :class:`typing.List[:class:`DialogInstance`]`
+ :rtype: :class:`typing.List`
32
33
return self._dialog_stack
34
0 commit comments