def create_todo(name):
os.system('clear')
todo_title()
cat = name
category = Category(category=cat)
session.add(category)
session.commit()
click.secho('{} Successfully added to categories add items'.format(cat), fg ='cyan', bold = True)
open_todo(name)
评论列表
文章目录