Drop lots of legacy code. Support Python 3.7-3.11.
[librarian.git] / src / librarian / builders / pdf.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 librarian import OutputFile
5
6
7 class PdfBuilder:
8     # Obowiązkowe
9     file_extension = 'pdf'
10     def build(self, document, mp3):
11         # stub
12         return OutputFile.from_bytes(b'')
13
14
15