From c2c46d94ec7aa71a493d31b2f586887596dbc62a Mon Sep 17 00:00:00 2001 From: Alex Lubbock Date: Tue, 26 Nov 2024 13:42:37 +0000 Subject: [PATCH] fix: typo in SequencingRunResults model repr --- backend/antigenapi/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/antigenapi/models.py b/backend/antigenapi/models.py index 52871f0..0aa2f3c 100644 --- a/backend/antigenapi/models.py +++ b/backend/antigenapi/models.py @@ -203,7 +203,7 @@ class Meta: # noqa: D106 ] def __str__(self): # noqa: D105 - return f"SeqencingRunResults {self.pk}" + return f"SequencingRunResults {self.pk}" class Nanobody(Model):