Skip to content

Commit

Permalink
Merge branch 'fix-error-view' into 'main'
Browse files Browse the repository at this point in the history
fix: Add missing get_data abstract implementation on error view causing errors when throwing errors

See merge request pub/terra/terrarun!102
  • Loading branch information
MatthewJohn committed Aug 2, 2024
2 parents 6fbbbae + e7e7c06 commit 5042132
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions terrarun/api_entities/base_entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -464,6 +464,10 @@ def to_dict(self):
]
}

def get_data(self):
"""Handle abstract methods"""
pass

def _from_object(**kwargs):
"""Handle abstract methods"""
pass
Expand Down

0 comments on commit 5042132

Please sign in to comment.