in bots/incident-response-slackbot/incident_response_slackbot/db/database.py [0:0]
def delete(self, user_id):
"""
Delete an entry from the database using the user_id as the key.
"""
self.data = self._load_data()
self.data.pop(user_id, None)
self._save()