25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

28 satır
552B

  1. import sys
  2. from os import system
  3. from myTodoist import TodoProject,TodoItem,TodoNote,TodoItemList
  4. import logcheck
  5. import createfile
  6. def main():
  7. # if(len(sys.argv)!=2):
  8. # return
  9. todoist = TodoProject("Master Assignment")
  10. # getattr(todoist, sys.argv[1])()
  11. todoist.checktaskstoday(3)
  12. todoist.checkTasksWithoutNotes()
  13. todoist.checkTasksOverDue()
  14. todoist.openTasksWithoutNotes()
  15. error = logcheck.logcheck()
  16. if error != None:
  17. todoist.sendnotification("LOG", error)
  18. #print(todoist.getproject())
  19. main()