We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84ebf41 commit 00cb3a8Copy full SHA for 00cb3a8
libraries/botbuilder-dialogs/botbuilder/dialogs/dialog_instance.py
@@ -16,7 +16,7 @@ def __init__(self):
16
:var self.id: The ID of the dialog
17
:vartype self.id: str
18
:var self.state: The instance's persisted state.
19
- :vartype self.state: Dict
+ :vartype self.state: Dict[str, object]
20
"""
21
self.id: str = None # pylint: disable=invalid-name
22
@@ -29,7 +29,7 @@ def __str__(self):
29
.. remarks::
30
Positive values are indexes within the current DC and negative values are indexes in the parent DC.
31
32
- :return: result
+ :return: Returns stack index.
33
:rtype: str
34
35
result = "\ndialog_instance_id: %s\n" % self.id
0 commit comments