Skip to content
Snippets Groups Projects
Commit b96ab8e9 authored by Sivert Kronen Hatteberg's avatar Sivert Kronen Hatteberg
Browse files

Fix typo

parent 9c0a79d0
No related branches found
No related tags found
1 merge request!194Add missing __str__ methods to the models
Pipeline #104294 passed
......@@ -378,7 +378,7 @@ class ConsentChoice(BaseModel):
def __str__(self) -> str:
return (
f"{self.__class__.__name__}(id={self.pk}, value={self.value}"
f"{self.__class__.__name__}(id={self.pk}, value={self.value}, "
f"type={self.consent_type}))"
)
......@@ -621,7 +621,7 @@ class InvitationLink(BaseModel):
def __str__(self) -> str:
return (
f"{self.__class__.__name__}(id={self.pk}, invitation={self.invitation}, "
f"uuid={self.uuid}, expore={self.expire})"
f"uuid={self.uuid}, expire={self.expire})"
)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment