mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
Fix exporter issue
This commit is contained in:
@@ -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):
|
||||
|
||||
Reference in New Issue
Block a user