Skip to content

Commit

Permalink
fix: building name
Browse files Browse the repository at this point in the history
  • Loading branch information
Friedjof committed Oct 10, 2024
1 parent f12a848 commit 87df077
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion timer/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class Building(models.Model):
name = models.CharField(max_length=100)

def get_name(self):
return f"{self.name.lower()}"
return f"{self.name}"


# Create your models here.
Expand Down

0 comments on commit 87df077

Please sign in to comment.