Fix exporter issue

This commit is contained in:
Raphael Michel
2020-07-24 11:40:45 +02:00
parent 556cb7c46d
commit 988eb85c05

View File

@@ -146,8 +146,8 @@ class Report(ReportlabExportMixin, BaseExporter):
def identifier(self) -> str:
raise NotImplementedError()
def __init__(self, event):
super().__init__(event)
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
class OverviewReport(Report):