afcfd4d
1
2
3
4
5
6
7
8
class Incident: def __init__(self, incident_id, description): self.incident_id = incident_id self.description = description def get_incident_id(self): return self.incident_id