Skip to content

Commit 00cb3a8

Browse files
authored
Updated formatting
1 parent 84ebf41 commit 00cb3a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_instance.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ def __init__(self):
1616
:var self.id: The ID of the dialog
1717
:vartype self.id: str
1818
:var self.state: The instance's persisted state.
19-
:vartype self.state: Dict
19+
:vartype self.state: Dict[str, object]
2020
"""
2121
self.id: str = None # pylint: disable=invalid-name
2222

@@ -29,7 +29,7 @@ def __str__(self):
2929
.. remarks::
3030
Positive values are indexes within the current DC and negative values are indexes in the parent DC.
3131
32-
:return: result
32+
:return: Returns stack index.
3333
:rtype: str
3434
"""
3535
result = "\ndialog_instance_id: %s\n" % self.id

0 commit comments

Comments
 (0)