Skip to content

Commit

Permalink
fix project str
Browse files Browse the repository at this point in the history
  • Loading branch information
nicokant committed Jul 25, 2024
1 parent cba6fd2 commit e7ee563
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/nina/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ class Project(models.Model):

def __str__(self) -> str:
if self.name:
return "{self.number} {self.name}"
return f"{self.number} {self.name}"

return self.number

0 comments on commit e7ee563

Please sign in to comment.