Fix: Renamed report-data class to avoid confusion (#642)

This commit is contained in:
Jim Brännlund 2023-04-09 01:08:47 +02:00 committed by GitHub
parent b1a910f3ae
commit 630ce7547c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ except ImportError:
class BaseReport: class BaseReport:
class Report: class ReportData:
def __init__(self, title, config): def __init__(self, title, config):
self._config = config self._config = config
self._data = { self._data = {
@ -122,7 +122,7 @@ class BaseReport:
config.getini("max_asset_filename_length") config.getini("max_asset_filename_length")
) )
self._report = self.Report(self._report_path.name, config) self._report = self.ReportData(self._report_path.name, config)
@property @property
def css(self): def css(self):