diff --git a/md_pdf/build/pdf.py b/md_pdf/build/pdf.py index 7ad086b..40200a0 100644 --- a/md_pdf/build/pdf.py +++ b/md_pdf/build/pdf.py @@ -58,4 +58,3 @@ def export_pdf(content, config): except OSError as e: raise PDFRenderException('Failed to render PDF. ' + str(e)) return PDF_OPTIONS # mostly for testing - diff --git a/tests/test_pdf.py b/tests/test_pdf.py index ac2e9c7..597d4f7 100644 --- a/tests/test_pdf.py +++ b/tests/test_pdf.py @@ -86,6 +86,3 @@ class PDFRendererTestCase(BaseTestCase): self.assertTrue(os.path.isfile(context['footer-html'])) self.assertEqual(context['header-html'], FILE_NAME_FORMAT.format('header')) self.assertEqual(context['footer-html'], FILE_NAME_FORMAT.format('footer')) - - -