fixed linting issues

This commit is contained in:
Alysia Broddrick 2023-09-11 17:46:11 -07:00
parent 71054a4c16
commit bc0b07d8bf
No known key found for this signature in database
GPG key ID: 03917052CD0F06B7
6 changed files with 98 additions and 72 deletions

View file

@ -150,4 +150,8 @@ class PublicContact(TimeStampedModel):
)
def __str__(self):
return f"{self.name} <{self.email}> id: {self.registry_id} type: {self.contact_type}"
return (
f"{self.name} <{self.email}>"
"id: {self.registry_id} "
"type: {self.contact_type}"
)