diff --git a/core/models.py b/core/models.py index 20fdc1d..8de8eda 100644 --- a/core/models.py +++ b/core/models.py @@ -322,7 +322,6 @@ def __str__(self: "PostAward") -> str: return f"@{self.giver}: {self.choice} for post: {self.post}" def save(self: "PostAward", *args: int, **kwargs: int) -> None: - # Use the REWARD_POINTS to set the gold value self.gold = self.REWARD_POINTS.get(self.choice[0], 0) super().save(*args, **kwargs)