Commit c0f68d9c authored by Vít Novotný's avatar Vít Novotný
Browse files

Fix `Document.is_relevant()`

parent e560b18f
......@@ -321,7 +321,7 @@ class Document:
def is_relevant(self) -> bool:
is_relevant = (
self.book_id in self.__class__.RELEVANT_PAGES and
self.page_id not in self.__class__.RELEVANT_PAGES[self.book_id]
self.page_id in self.__class__.RELEVANT_PAGES[self.book_id]
)
return is_relevant
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment