Skip to content

Commit 84ebf41

Browse files
authored
Update dialog_instance.py
1 parent 4a3ee84 commit 84ebf41

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 = "\ndialog_instance_id: %s\n" % self.id
3636
if self.state is not None:

0 commit comments

Comments
 (0)