Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / meta / types / bool.py
1 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
2 # Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
3 #
4 from .base import MetaValue
5
6
7 class BoolValue(MetaValue):
8     has_language = False
9
10     @classmethod
11     def from_text(cls, text):
12         return cls(text == 'true')
13