4a10c8d66b11085af91d65b946f8c153b6ff86e7
[librarian.git] / src / librarian / meta / types / base.py
1 class MetaValue:
2     has_language = True
3
4     def __init__(self, value):
5         self.value = value
6     
7     @classmethod
8     def from_text(cls, text):
9         raise NotImplementedError()