From 43629d1695ea2f38babc354fbd65c4e2c1db3359 Mon Sep 17 00:00:00 2001 From: Jochem Smit Date: Mon, 18 Oct 2021 17:24:27 +0200 Subject: [PATCH] remove kwargs --- pyhdx/output.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyhdx/output.py b/pyhdx/output.py index 56a499cd..f8419ffe 100644 --- a/pyhdx/output.py +++ b/pyhdx/output.py @@ -36,7 +36,7 @@ class FitReport(FitResultPlotBase): Create .pdf output of a fit result """ def __init__(self, fit_result, title=None, doc=None, add_date=True, temp_dir=None, **kwargs): - super().__init__(fit_result, **kwargs) + super().__init__(fit_result) self.title = title or f'Fit report' self.doc = doc or self._init_doc(add_date=add_date) self._temp_dir = temp_dir or self.make_temp_dir()