yet another stupid bug
[librarian.git] / librarian / formats / __init__.py
1 # -*- coding: utf-8 -*-
2 #
3 # This file is part of Librarian, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
5 #
6
7
8 class Format(object):
9     """ Generic format class. """
10     def __init__(self, doc):
11         self.doc = doc
12
13     def build(self):
14         raise NotImplementedError