Skip to content

Commit b81adb2

Browse files
authored
Ad hoc: Fix documentation (#61)
1 parent 50f6dde commit b81adb2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/examples/snippets.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ Iterate over all the investigations and print their title and status.
9090
9191
for inv in xc.investigations:
9292
s = "Investigation ID: {inv_id} Title: {inv_title} Status: {inv_status}"
93-
status = "OPEN" if inv.decision is not None else "CLOSED"
93+
status = "OPEN" if inv.decision is None else "CLOSED"
9494
print(s.format(inv_id=inv.id, inv_title=inv.title, inv_status=status))
9595
9696
.. _snippet list comments:

0 commit comments

Comments
 (0)