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