pystitcher/src/pystitcher/bookmark.py

12 lines
313 B
Python
Raw Normal View History

2021-05-26 13:54:36 +00:00
""" Bookmark class """
class Bookmark:
def __init__(self, page, title, level=1):
self.page = page
self.title = title
self.level = level
def __lt__(self, other):
return self.page < other.page
def __repr__(self):
return str([self.page, self.title, self.level])