Skip to content

Commit f39d404

Browse files
Doc: Don't suppress doctest output
1 parent be626c8 commit f39d404

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

docs/source/data-structures/presentations/to-present.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -207,8 +207,11 @@ enumerates *kb*) prior to calling this function.
207207
>>> kb.run()
208208
>>> p2 = to(kb, rtype=(Presentation,))
209209
>>> for p in [p1, p2]:
210-
... _ = presentation.sort_each_rule(p)
211-
... _ = presentation.sort_rules(p)
210+
... # Returns whether any changes have been made
211+
... presentation.sort_each_rule(p)
212+
... presentation.sort_rules(p)
213+
True
214+
False
212215
>>> p1 == p2
213216
True
214217

0 commit comments

Comments
 (0)