Browse Source

Removed debugging lines

allens 1 tuần trước cách đây
mục cha
commit
c419e9a1fc
1 tập tin đã thay đổi với 0 bổ sung1 xóa
  1. 0 1
      checklist/checklist.py

+ 0 - 1
checklist/checklist.py

@@ -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