Skip to content

Commit c1cb806

Browse files
authored
Updated formatting
Not sure how to document method on line 36
1 parent 2034c6b commit c1cb806

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

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

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff 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:

0 commit comments

Comments
 (0)