Linting
This commit is contained in:
parent
e29b42eecc
commit
633ab88b04
4 changed files with 22 additions and 13 deletions
|
|
@ -244,6 +244,10 @@ class Trust(models.Model):
|
|||
verbose_name_plural = _("friendships")
|
||||
unique_together = ("trusting", "trusted")
|
||||
|
||||
def __str__(self):
|
||||
return _("Friendship between {trusting} and{trusted}").format(
|
||||
trusting=str(self.trusting), trusted=str(self.trusted))
|
||||
|
||||
|
||||
class Alias(models.Model):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue