Skip to content

Commit 9759e56

Browse files
authored
Fixed formatting
Removed docstring for `def __str__(self)`
1 parent c1cb806 commit 9759e56

File tree

1 file changed

+2
-9
lines changed

1 file changed

+2
-9
lines changed

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

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

0 commit comments

Comments
 (0)