File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libraries/botbuilder-dialogs/botbuilder/dialogs Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,9 @@ def __init__(self):
1414 Gets or sets the ID of the dialog and gets or sets the instance's persisted state.
1515
1616 :var self.id: The ID of the dialog
17- :vartype self.id: :class:` str`
17+ :vartype self.id: str
1818 :var self.state: The instance's persisted state.
19- :vartype self.state: :class:` Dict`
19+ :vartype self.state: Dict
2020 """
2121 self .id : str = None # pylint: disable=invalid-name
2222
@@ -30,7 +30,7 @@ def __str__(self):
3030 Positive values are indexes within the current DC and negative values are indexes in the parent DC.
3131
3232 :return: result
33- :rtype: :class:` str`
33+ :rtype: str
3434 """
3535 result = "\n dialog_instance_id: %s\n " % self .id
3636 if self .state is not None :
You can’t perform that action at this time.
0 commit comments