Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / meta / types / base.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 class MetaValue:
5     has_language = True
6
7     def __init__(self, value):
8         self.value = value
9     
10     @classmethod
11     def from_text(cls, text):
12         raise NotImplementedError()