|  | @@ -24,7 +24,6 @@ def index():
 | 
											
												
													
														|  |      if request.method == 'POST':
 |  |      if request.method == 'POST':
 | 
											
												
													
														|  |          checklist_items = current_app.config['LIST']
 |  |          checklist_items = current_app.config['LIST']
 | 
											
												
													
														|  |          item = request.form.get('item')
 |  |          item = request.form.get('item')
 | 
											
												
													
														|  | -        print(checklist_items)
 |  | 
 | 
											
												
													
														|  |          if item:
 |  |          if item:
 | 
											
												
													
														|  |              checklist_items.append({'name': item, 'checked': 'no'})
 |  |              checklist_items.append({'name': item, 'checked': 'no'})
 | 
											
												
													
														|  |              save_checklist(checklist_items)  # Save to file after adding
 |  |              save_checklist(checklist_items)  # Save to file after adding
 |