summaryrefslogtreecommitdiff
path: root/entry.py
blob: 3dadb5e64869c21a36fb29dfb5157384dc6868f7 (plain)
1
2
3
4
5
6
7
8

class Entry:
    def __init__(self, desc, due = "", due_alt = "", link = ""):
        self.desc = desc
        self.due = due
        self.due_alt = due_alt
        self.link = link
        self.done = False