Skip to content

Commit

Permalink
remove kwargs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jhsmit committed Oct 18, 2021
1 parent 4829722 commit 43629d1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyhdx/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 43629d1

Please sign in to comment.