conditionals — where ai silently bugs7 / 8
conditionals and the truthiness traps
Cursor wrote if status is "done": and the branch never fires, even when
status clearly is "done". The string compare with is is unreliable —
Python only sometimes reuses string objects in memory.
Fix line 3 so the script prints shipping it.
The break is on line 3 — but read the whole snippet first.
⌘↵ runs the editor.
Booting Python…
Output
[promptdojo:~]$ _