File tree Expand file tree Collapse file tree 1 file changed +2
-9
lines changed
libraries/botbuilder-dialogs/botbuilder/dialogs Expand file tree Collapse file tree 1 file changed +2
-9
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,8 @@ class DialogState:
1010 """
1111 def __init__ (self , stack : List [DialogInstance ] = None ):
1212 """
13- Initializes a new instance of the `DialogState` class.
14-
15- .. remarks::
16- The new instance is created with an empty dialog stack.
13+ Initializes a new instance of the :class:`DialogState` class.
14+ The new instance is created with an empty dialog stack.
1715
1816 :param stack: The state information to initialize the stack with.
1917 :type stack: List[:class:`DialogInstance`]
@@ -34,11 +32,6 @@ def dialog_stack(self):
3432 return self ._dialog_stack
3533
3634 def __str__ (self ):
37- """
38- ?
39- :return:
40- :rtype: str
41- """
4235 if not self ._dialog_stack :
4336 return "dialog stack empty!"
4437 return " " .join (map (str , self ._dialog_stack ))
You can’t perform that action at this time.
0 commit comments