소스 검색

Removed debugging lines

allens 1 주 전
부모
커밋
c419e9a1fc
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  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