diff --git a/src/postprocessor/core/export_pdf.py b/src/postprocessor/core/export_pdf.py
deleted file mode 100644
index 041789dae04ac711e575e2331e253dea9a71e727..0000000000000000000000000000000000000000
--- a/src/postprocessor/core/export_pdf.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python3
-import numpy as np
-from matplotlib import pyplot as plt
-from matplotlib.backends.backend_pdf import PdfPages
-
-
-def dummyplot():
-    plt.plot(np.random.randint(10, size=5), np.random.randint(10, size=5))
-
-
-plt1 = dummyplot()
-plt2 = dummyplot()
-pp = PdfPages("foo.pdf")
-for i in [plt1, plt2]:
-    pp.savefig(i)
-pp.close()