blacked files

This commit is contained in:
Gunther Weissenbaeck 2024-02-15 11:38:33 +01:00
parent efa29fec5c
commit dc4836579d
7 changed files with 86 additions and 31 deletions

View file

@ -36,7 +36,9 @@ class Contact(models.Model):
class ContactTag(models.Model):
id = models.UUIDField(primary_key=True, default=uuid4, editable=False)
tag = models.CharField(max_length=50, null=True, blank=True, verbose_name=_("Tag"))
tag = models.CharField(
max_length=50, null=True, blank=True, verbose_name=_("Tag")
)
class Meta:
verbose_name = _("Kontakt Tag")