default_list.py 203 B

12345678910111213
  1. LIST = [{
  2. "name": "Do a thing",
  3. "crossed": 'yes'
  4. },
  5. {
  6. "name": "Do another thing",
  7. "crossed": 'no'
  8. },
  9. {
  10. "name": "And that other thing too",
  11. "crossed": 'no'
  12. }
  13. ]