File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
libraries/botbuilder-dialogs/botbuilder/dialogs Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -11,10 +11,12 @@ class DialogState:
1111 def __init__ (self , stack : List [DialogInstance ] = None ):
1212 """
1313 Initializes a new instance of the `DialogState` class.
14+
1415 .. remarks::
1516 The new instance is created with an empty dialog stack.
17+
1618 :param stack: The state information to initialize the stack with.
17- :type stack: List
19+ :type stack: List[:class:`DialogInstance`]
1820 """
1921 if stack is None :
2022 self ._dialog_stack = []
@@ -24,19 +26,17 @@ def __init__(self, stack: List[DialogInstance] = None):
2426 @property
2527 def dialog_stack (self ):
2628 """
27- Initializes a new instance of the `DialogState` class.
28- .. remarks::
29- The new instance has a dialog stack that is populated using the information
29+ Initializes a new instance of the :class:`DialogState` class.
30+
3031 :return: The state information to initialize the stack with.
3132 :rtype: List
3233 """
3334 return self ._dialog_stack
3435
3536 def __str__ (self ):
3637 """
37- Gets or sets the state information for a dialog stack.
38-
39- :return: State information for a dialog stack
38+ ?
39+ :return:
4040 :rtype: str
4141 """
4242 if not self ._dialog_stack :
You can’t perform that action at this time.
0 commit comments