(self)
| 1205 | |
| 1206 | class AuditReportCommand(Command): |
| 1207 | def __init__(self): |
| 1208 | super(AuditReportCommand, self).__init__() |
| 1209 | self.sox_data = None # type: Union[None, sox_data.SoxData] |
| 1210 | self.allow_sox_data_fetch = False |
| 1211 | self.lookup = {} |
| 1212 | |
| 1213 | def get_sox_data(self, params): |
| 1214 | if not self.sox_data and is_compliance_reporting_enabled(params): |