Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
♻️ Add delete() method to record
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf committed Aug 13, 2024
1 parent 5d65c60 commit d1bac95
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lnschema_core/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -745,6 +745,10 @@ def save(self, *args, **kwargs) -> Record:
super().save(*args, **kwargs)
return self

def delete(self) -> None:
"""Delete."""
pass

class Meta:
abstract = True

Expand Down

0 comments on commit d1bac95

Please sign in to comment.