"""Error Correction Model.""" class ErrorCorrection: """Error Correction class.""" def __init__(self, **kwargs): """Construct Error Correction class.""" self.release_correction_id = kwargs.get('release_correction_id') self.release_id = kwargs.get('release_id') self.items = kwargs.get('items')